summaryrefslogtreecommitdiff
path: root/sound/soc/codecs/cs53l30.c
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2023-06-10 16:56:30 +0300
committerMark Brown <broonie@kernel.org>2023-06-13 14:11:08 +0300
commit0eff26b13da4eb5a71a59280c3483273ccb5b9cb (patch)
tree3a2fc25ea8e38087698e60be79099a9e7e9503d6 /sound/soc/codecs/cs53l30.c
parentce598b2f83608f3818f8a4079662d3844679b16f (diff)
downloadlinux-0eff26b13da4eb5a71a59280c3483273ccb5b9cb.tar.xz
ASoC: cs35l30: Use maple tree register cache
The cs35l30 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. Acked-by: David Rhodes <david.rhodes@cirrus.com> Signed-off-by: Mark Brown <broonie@kernel.org> Link: https://lore.kernel.org/r/20230609-asoc-cirrus-maple-v1-10-b806c4cbd1d4@kernel.org Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/cs53l30.c')
-rw-r--r--sound/soc/codecs/cs53l30.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/cs53l30.c b/sound/soc/codecs/cs53l30.c
index 21962b828ab1..f4065555c36e 100644
--- a/sound/soc/codecs/cs53l30.c
+++ b/sound/soc/codecs/cs53l30.c
@@ -911,7 +911,7 @@ static struct regmap_config cs53l30_regmap = {
.volatile_reg = cs53l30_volatile_register,
.writeable_reg = cs53l30_writeable_register,
.readable_reg = cs53l30_readable_register,
- .cache_type = REGCACHE_RBTREE,
+ .cache_type = REGCACHE_MAPLE,
.use_single_read = true,
.use_single_write = true,