]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
power: supply: bq2515x: convert to use maple tree register cache
authorBo Liu <liubo03@inspur.com>
Fri, 28 Feb 2025 08:02:30 +0000 (03:02 -0500)
committerSebastian Reichel <sebastian.reichel@collabora.com>
Sat, 8 Mar 2025 00:30:54 +0000 (01:30 +0100)
The maple tree register cache is based on a much more modern data structure
than the rbtree cache and makes optimisation choices which are probably
more appropriate for modern systems than those made by the rbtree cache.

Signed-off-by: Bo Liu <liubo03@inspur.com>
Link: https://lore.kernel.org/r/20250228080236.2759-4-liubo03@inspur.com
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
drivers/power/supply/bq2515x_charger.c

index a3424f67f2b1d7b607903806291896eb68aba707..6909b1322f0d4081fd5a4b9018d995e4099f674a 100644 (file)
@@ -1060,7 +1060,7 @@ static const struct regmap_config bq25150_regmap_config = {
        .max_register           = BQ2515X_DEVICE_ID,
        .reg_defaults           = bq25150_reg_defaults,
        .num_reg_defaults       = ARRAY_SIZE(bq25150_reg_defaults),
-       .cache_type             = REGCACHE_RBTREE,
+       .cache_type             = REGCACHE_MAPLE,
        .volatile_reg           = bq2515x_volatile_register,
 };
 
@@ -1071,7 +1071,7 @@ static const struct regmap_config bq25155_regmap_config = {
        .max_register           = BQ2515X_DEVICE_ID,
        .reg_defaults           = bq25155_reg_defaults,
        .num_reg_defaults       = ARRAY_SIZE(bq25155_reg_defaults),
-       .cache_type             = REGCACHE_RBTREE,
+       .cache_type             = REGCACHE_MAPLE,
        .volatile_reg           = bq2515x_volatile_register,
 };