summaryrefslogtreecommitdiff
path: root/drivers/hwmon
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2023-06-10 16:59:09 +0300
committerGuenter Roeck <linux@roeck-us.net>2023-06-10 17:37:02 +0300
commit729f1f738a76accdd9dca4d0eaeba4b263bdee60 (patch)
tree0c3e30b48ac68a969a9b4c898a81ab972ca06812 /drivers/hwmon
parent6ef3811c40eb24c061cfd8ba445bccb4ac46ca98 (diff)
downloadlinux-729f1f738a76accdd9dca4d0eaeba4b263bdee60.tar.xz
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>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r--drivers/hwmon/tmp102.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/tmp102.c b/drivers/hwmon/tmp102.c
index 6359d12b2420..2506c78590af 100644
--- a/drivers/hwmon/tmp102.c
+++ b/drivers/hwmon/tmp102.c
@@ -184,7 +184,7 @@ static const struct regmap_config tmp102_regmap_config = {
.writeable_reg = tmp102_is_writeable_reg,
.volatile_reg = tmp102_is_volatile_reg,
.val_format_endian = REGMAP_ENDIAN_BIG,
- .cache_type = REGCACHE_RBTREE,
+ .cache_type = REGCACHE_MAPLE,
.use_single_read = true,
.use_single_write = true,
};