summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2023-06-10 14:58:02 +0100
committerMark Brown <broonie@kernel.org>2023-06-19 12:58:47 +0100
commiteefc27ea14ad6f5aa4656cf302dec366e1fd62f1 (patch)
treef1f1141f9cf5bfbca00ff05506f2383e94100262 /sound
parent11cce87f6453270ed63924ac55da764e060f8588 (diff)
downloadlinux-stable-eefc27ea14ad6f5aa4656cf302dec366e1fd62f1.tar.gz
linux-stable-eefc27ea14ad6f5aa4656cf302dec366e1fd62f1.tar.bz2
linux-stable-eefc27ea14ad6f5aa4656cf302dec366e1fd62f1.zip
ASoC: rt5682: Use maple tree register cache
The rt5682 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-16-729c6553cdcf@kernel.org Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/rt5682-i2c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/rt5682-i2c.c b/sound/soc/codecs/rt5682-i2c.c
index 1742efe8dbcf..fb8ffb5b2ff6 100644
--- a/sound/soc/codecs/rt5682-i2c.c
+++ b/sound/soc/codecs/rt5682-i2c.c
@@ -46,7 +46,7 @@ static const struct regmap_config rt5682_regmap = {
.max_register = RT5682_I2C_MODE,
.volatile_reg = rt5682_volatile_register,
.readable_reg = rt5682_readable_register,
- .cache_type = REGCACHE_RBTREE,
+ .cache_type = REGCACHE_MAPLE,
.reg_defaults = rt5682_reg,
.num_reg_defaults = RT5682_REG_NUM,
.use_single_read = true,