aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2023-06-10 14:59:54 +0100
committerMark Brown <broonie@kernel.org>2023-06-19 12:59:45 +0100
commitce44a03db73f7ce7cca152e07bd9cbfc3c10a0ba (patch)
tree926dc654c45472cd67a8175b109ccd4564c9ee52 /drivers/regulator
parent29890a15865deaf7f446119bcb5617b0cc76be03 (diff)
downloadlinux-ce44a03db73f7ce7cca152e07bd9cbfc3c10a0ba.tar.gz
regulator: ltc3676: Use maple tree register cache
The ltc3676 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-regulator-ltc-maple-v1-2-08c15181f8b2@kernel.org Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/ltc3676.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/ltc3676.c b/drivers/regulator/ltc3676.c
index 2a225c722564c..73d511eb1c1dc 100644
--- a/drivers/regulator/ltc3676.c
+++ b/drivers/regulator/ltc3676.c
@@ -261,7 +261,7 @@ static const struct regmap_config ltc3676_regmap_config = {
.max_register = LTC3676_CLIRQ,
.use_single_read = true,
.use_single_write = true,
- .cache_type = REGCACHE_RBTREE,
+ .cache_type = REGCACHE_MAPLE,
};
static irqreturn_t ltc3676_isr(int irq, void *dev_id)