diff options
author | Quentin Schulz <quentin.schulz@cherry.de> | 2025-01-31 11:31:39 +0100 |
---|---|---|
committer | Kever Yang <kever.yang@rock-chips.com> | 2025-05-06 15:59:43 +0800 |
commit | b8c273247c6c836d6a3065efc8efe0f8a0870b09 (patch) | |
tree | 9d3e71a9b2bfff63d17862517feb963c8fa0165a | |
parent | 046868334433666ef46f6b762039550d41548aa0 (diff) |
pinctrl: rockchip: constify rockchip_pin_ctrl for RK3368
There's no need to modify private data from the controller, so let's
make that struct const.
Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
-rw-r--r-- | drivers/pinctrl/rockchip/pinctrl-rk3368.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/rockchip/pinctrl-rk3368.c b/drivers/pinctrl/rockchip/pinctrl-rk3368.c index 9ae06ed19e9..aaf24719a16 100644 --- a/drivers/pinctrl/rockchip/pinctrl-rk3368.c +++ b/drivers/pinctrl/rockchip/pinctrl-rk3368.c @@ -152,7 +152,7 @@ static struct rockchip_pin_bank rk3368_pin_banks[] = { PIN_BANK(3, 32, "gpio3"), }; -static struct rockchip_pin_ctrl rk3368_pin_ctrl = { +static const struct rockchip_pin_ctrl rk3368_pin_ctrl = { .pin_banks = rk3368_pin_banks, .nr_banks = ARRAY_SIZE(rk3368_pin_banks), .grf_mux_offset = 0x0, |