projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
86c3331
)
drm/bridge: dpc3433: Convert to use maple tree register cache
author
Mark Brown
<broonie@kernel.org>
Sat, 30 Sep 2023 23:42:24 +0000
(
01:42
+0200)
committer
Neil Armstrong
<neil.armstrong@linaro.org>
Mon, 2 Oct 2023 07:09:17 +0000
(09:09 +0200)
The maple tree register cache is based on a much more modern data structure
than the rbtree cache and makes optimisation choices which are probably
more appropriate for modern systems than those made by the rbtree cache.
Signed-off-by: Mark Brown <broonie@kernel.org>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link:
https://patchwork.freedesktop.org/patch/msgid/20231001-drm-dlpc3433-maple-v1-1-7d71170c010b@kernel.org
drivers/gpu/drm/bridge/ti-dlpc3433.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/bridge/ti-dlpc3433.c
b/drivers/gpu/drm/bridge/ti-dlpc3433.c
index b65632ec7e7daa436a4e1d5e71028384bb65b900..ca3348109bcd208bf360479624eeb25a051c18fe 100644
(file)
--- a/
drivers/gpu/drm/bridge/ti-dlpc3433.c
+++ b/
drivers/gpu/drm/bridge/ti-dlpc3433.c
@@
-100,7
+100,7
@@
static struct regmap_config dlpc_regmap_config = {
.max_register = WR_DSI_PORT_EN,
.writeable_noinc_reg = dlpc_writeable_noinc_reg,
.volatile_table = &dlpc_volatile_table,
- .cache_type = REGCACHE_
RBTRE
E,
+ .cache_type = REGCACHE_
MAPL
E,
.name = "dlpc3433",
};