summaryrefslogtreecommitdiffstats
path: root/sound/soc
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2023-06-10 14:57:51 +0100
committerMark Brown <broonie@kernel.org>2023-06-19 12:58:37 +0100
commit77b5d6e98f452445bdc82096a992b8d05f54f5d3 (patch)
tree0dcf4d71bee883186b5acc85d9c587a8e6546bfa /sound/soc
parent5bd8a567aaea5d2e79b024bb4ad42d88bbe8f7c2 (diff)
downloadlinux-77b5d6e98f452445bdc82096a992b8d05f54f5d3.tar.gz
linux-77b5d6e98f452445bdc82096a992b8d05f54f5d3.tar.bz2
linux-77b5d6e98f452445bdc82096a992b8d05f54f5d3.zip
ASoC: rt5514: Use maple tree register cache
The rt5514 can only support single register read and write operations so does not benefit from block writes. This means it gets no benefit from using the rbtree register cache over the maple tree register cache so convert it to use maple trees instead, it is more modern. Signed-off-by: Mark Brown <broonie@kernel.org> Link: https://lore.kernel.org/r/20230609-asoc-rt-maple-v1-5-729c6553cdcf@kernel.org Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc')
-rw-r--r--sound/soc/codecs/rt5514.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/rt5514.c b/sound/soc/codecs/rt5514.c
index 0f9f52b93e36..b3aac2373357 100644
--- a/sound/soc/codecs/rt5514.c
+++ b/sound/soc/codecs/rt5514.c
@@ -1195,7 +1195,7 @@ static const struct regmap_config rt5514_regmap = {
.reg_read = rt5514_i2c_read,
.reg_write = rt5514_i2c_write,
- .cache_type = REGCACHE_RBTREE,
+ .cache_type = REGCACHE_MAPLE,
.reg_defaults = rt5514_reg,
.num_reg_defaults = ARRAY_SIZE(rt5514_reg),
.use_single_read = true,