]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
pinctrl: remove unneeded 'fast_io' parameter in regmap_config
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Wed, 13 Aug 2025 16:14:59 +0000 (18:14 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Tue, 19 Aug 2025 12:09:35 +0000 (14:09 +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>
Link: https://lore.kernel.org/20250813161517.4746-14-wsa+renesas@sang-engineering.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/pinctrl-rp1.c

index b231efc62ff3661064ecdfcbfce35b9f9acc0b7d..605105aa0cbc7fcb9c15e23a5bac1242e15ec667 100644 (file)
@@ -1690,7 +1690,6 @@ static const struct regmap_config rp1_pinctrl_gpio_regmap_cfg = {
        .reg_bits = 32,
        .val_bits = 32,
        .reg_stride = 4,
-       .fast_io = true,
        .rd_table = &rp1_gpio_reg_table,
        .name = "rp1-gpio",
        .max_register = 0xb11c,
@@ -1700,7 +1699,6 @@ static const struct regmap_config rp1_pinctrl_rio_regmap_cfg = {
        .reg_bits = 32,
        .val_bits = 32,
        .reg_stride = 4,
-       .fast_io = true,
        .rd_table = &rp1_rio_reg_table,
        .name = "rp1-rio",
        .max_register = 0xb004,
@@ -1710,7 +1708,6 @@ static const struct regmap_config rp1_pinctrl_pads_regmap_cfg = {
        .reg_bits = 32,
        .val_bits = 32,
        .reg_stride = 4,
-       .fast_io = true,
        .rd_table = &rp1_pads_reg_table,
        .name = "rp1-pads",
        .max_register = 0x8050,