Skip to content

Commit 729f1f7

Browse files
brooniegroeck
authored andcommitted
hwmon: (tmp102) Use maple tree register cache
The tmp102 is only capable of performing single register read and write operations which means it gains no advantage from using a rbtree register cache, convert it to using the more modern maple tree register cache instead. This should be more efficient. Signed-off-by: Mark Brown <broonie@kernel.org> Link: https://lore.kernel.org/r/20230609-hwmon-maple-v1-3-8edacce86b28@kernel.org Signed-off-by: Guenter Roeck <linux@roeck-us.net>
1 parent 6ef3811 commit 729f1f7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/hwmon/tmp102.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ static const struct regmap_config tmp102_regmap_config = {
184184
.writeable_reg = tmp102_is_writeable_reg,
185185
.volatile_reg = tmp102_is_volatile_reg,
186186
.val_format_endian = REGMAP_ENDIAN_BIG,
187-
.cache_type = REGCACHE_RBTREE,
187+
.cache_type = REGCACHE_MAPLE,
188188
.use_single_read = true,
189189
.use_single_write = true,
190190
};

0 commit comments

Comments
 (0)