]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
reset: remove unneeded 'fast_io' parameter in regmap_config
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Wed, 13 Aug 2025 16:15:02 +0000 (18:15 +0200)
committerPhilipp Zabel <p.zabel@pengutronix.de>
Thu, 14 Aug 2025 10:21:39 +0000 (12:21 +0200)
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>
Acked-by: Drew Fustini <fustini@kernel.org> # for reset-th1520.c
Link: https://lore.kernel.org/r/20250813161517.4746-17-wsa+renesas@sang-engineering.com
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
drivers/reset/reset-intel-gw.c
drivers/reset/reset-qcom-pdc.c
drivers/reset/reset-th1520.c

index a5a01388ae7fae28654736e8219ff4e80c9508a6..a5ce3350cb5ea5cdbf1f8a6167bd0ddc842f013c 100644 (file)
@@ -40,7 +40,6 @@ static const struct regmap_config intel_rcu_regmap_config = {
        .reg_bits =     32,
        .reg_stride =   4,
        .val_bits =     32,
-       .fast_io =      true,
 };
 
 /*
index dce1fc1a68ad3e42505cfa45e9cb742ccd03f375..ae2b5aba7a5989ffd1e5dbcca4a5a5b9f37887ba 100644 (file)
@@ -36,7 +36,6 @@ static const struct regmap_config pdc_regmap_config = {
        .reg_stride     = 4,
        .val_bits       = 32,
        .max_register   = 0x20000,
-       .fast_io        = true,
 };
 
 static const struct qcom_pdc_reset_map sdm845_pdc_resets[] = {
index 06e5dff7c524d67208762539e0b0d453ad2f62ee..14d964a9c6b637397b813989494029f03ffa3cf1 100644 (file)
@@ -116,7 +116,6 @@ static const struct regmap_config th1520_reset_regmap_config = {
        .reg_bits = 32,
        .val_bits = 32,
        .reg_stride = 4,
-       .fast_io = true,
 };
 
 static int th1520_reset_probe(struct platform_device *pdev)