Unverified Commit ce44a03d authored by Mark Brown's avatar Mark Brown
Browse files

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: default avatarMark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/20230609-regulator-ltc-maple-v1-2-08c15181f8b2@kernel.org


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 29890a15
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)