summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfram Sang <wsa+renesas@sang-engineering.com>2026-07-05 18:43:12 +0200
committerDaniel Lezcano <daniel.lezcano@kernel.org>2026-07-27 13:51:56 +0200
commitb08e97bee0e1438a7d3283f901b51121aa2640d5 (patch)
tree780e0cb47b44663214ffaa2a643c09f03799e674
parentcbe31d5ce49873a2a5a3ca5decb4935672396e77 (diff)
downloadlinux-next-b08e97bee0e1438a7d3283f901b51121aa2640d5.tar.gz
linux-next-b08e97bee0e1438a7d3283f901b51121aa2640d5.zip
thermal: Remove unneeded 'fast_io' parameter in regmap_config
When using MMIO with regmap, fast_io is implied. No need to set it again. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Signed-off-by: Daniel Lezcano <daniel.lezcano@kernel.org> Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com> Link: https://patch.msgid.link/20260705164311.2273-2-wsa+renesas@sang-engineering.com
-rw-r--r--drivers/thermal/armada_thermal.c1
-rw-r--r--drivers/thermal/sun8i_thermal.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/thermal/armada_thermal.c b/drivers/thermal/armada_thermal.c
index be6240984002..f64e46fcf0be 100644
--- a/drivers/thermal/armada_thermal.c
+++ b/drivers/thermal/armada_thermal.c
@@ -710,7 +710,6 @@ static const struct regmap_config armada_thermal_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
- .fast_io = true,
};
static int armada_thermal_probe_legacy(struct platform_device *pdev,
diff --git a/drivers/thermal/sun8i_thermal.c b/drivers/thermal/sun8i_thermal.c
index 22674790629a..284684137c43 100644
--- a/drivers/thermal/sun8i_thermal.c
+++ b/drivers/thermal/sun8i_thermal.c
@@ -149,7 +149,6 @@ static const struct regmap_config config = {
.reg_bits = 32,
.val_bits = 32,
.reg_stride = 4,
- .fast_io = true,
.max_register = 0xfc,
};