summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2023-06-10 12:16:38 +0100
committerMark Brown <broonie@kernel.org>2023-06-19 12:58:30 +0100
commit9321015a5f40891e7cb094c6f68f6d4f67b5f3dc (patch)
tree80436b5e9d6fba777dac0fea00f8e074a5ad7e13 /sound
parent7ae8039f87918e2f108d352f228e2ccee03994bc (diff)
downloadlinux-stable-9321015a5f40891e7cb094c6f68f6d4f67b5f3dc.tar.gz
linux-stable-9321015a5f40891e7cb094c6f68f6d4f67b5f3dc.tar.bz2
linux-stable-9321015a5f40891e7cb094c6f68f6d4f67b5f3dc.zip
ASoC: es8328: Use maple tree register cache
The es8328 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-es-maple-v1-2-45ada77f5643@kernel.org Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/es8328.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/es8328.c b/sound/soc/codecs/es8328.c
index 160adc706cc6..0bd9ba5a11b4 100644
--- a/sound/soc/codecs/es8328.c
+++ b/sound/soc/codecs/es8328.c
@@ -822,7 +822,7 @@ const struct regmap_config es8328_regmap_config = {
.reg_bits = 8,
.val_bits = 8,
.max_register = ES8328_REG_MAX,
- .cache_type = REGCACHE_RBTREE,
+ .cache_type = REGCACHE_MAPLE,
.use_single_read = true,
.use_single_write = true,
};