diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-12-11 17:42:39 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2024-02-07 11:46:02 +0100 |
commit | 1a7a7aa1e4250da2971d1ff352cec7e5419af4dc (patch) | |
tree | d219b96c3f4fb38c8cedeefc140f658974667f3e | |
parent | cd2807e73352114c5e30eab1a203ae9ca5175a49 (diff) |
pinctrl: nuvoton: Constify wpcm450_groups
There is no modifications are assumed for wpcm450_groups. Constify it.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20231211154239.4190429-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/pinctrl/nuvoton/pinctrl-wpcm450.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/nuvoton/pinctrl-wpcm450.c b/drivers/pinctrl/nuvoton/pinctrl-wpcm450.c index 4589900244c7..cdad4ef11a2f 100644 --- a/drivers/pinctrl/nuvoton/pinctrl-wpcm450.c +++ b/drivers/pinctrl/nuvoton/pinctrl-wpcm450.c @@ -474,7 +474,7 @@ enum { #undef WPCM450_GRP }; -static struct pingroup wpcm450_groups[] = { +static const struct pingroup wpcm450_groups[] = { #define WPCM450_GRP(x) PINCTRL_PINGROUP(#x, x ## _pins, ARRAY_SIZE(x ## _pins)) WPCM450_GRPS #undef WPCM450_GRP |