diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2017-08-10 06:06:21 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2017-08-22 08:40:25 -0400 |
commit | 0192fffec3dcb136698092b12ed8f370946babfe (patch) | |
tree | 14ba1b88e8b8d107b3fb5098a48047ada6a1d894 | |
parent | cfa5760c3bb95b284f21a9ca19317688d4f0c079 (diff) |
pinctrl: aspeed: g5: constify pinconf_ops, pinctrl_ops, and pinmux_ops structures
These structures are only stored in fields of a pinctrl_desc
structure (confops, pctlops, and pmxops) that are const. Make the
structures const as well.
Done with the help of Coccinelle.
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/pinctrl/aspeed/pinctrl-aspeed-g5.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pinctrl/aspeed/pinctrl-aspeed-g5.c b/drivers/pinctrl/aspeed/pinctrl-aspeed-g5.c index 634b371da43a..187abd7693cf 100644 --- a/drivers/pinctrl/aspeed/pinctrl-aspeed-g5.c +++ b/drivers/pinctrl/aspeed/pinctrl-aspeed-g5.c | |||
@@ -2492,7 +2492,7 @@ static struct aspeed_pinctrl_data aspeed_g5_pinctrl_data = { | |||
2492 | .nconfigs = ARRAY_SIZE(aspeed_g5_configs), | 2492 | .nconfigs = ARRAY_SIZE(aspeed_g5_configs), |
2493 | }; | 2493 | }; |
2494 | 2494 | ||
2495 | static struct pinmux_ops aspeed_g5_pinmux_ops = { | 2495 | static const struct pinmux_ops aspeed_g5_pinmux_ops = { |
2496 | .get_functions_count = aspeed_pinmux_get_fn_count, | 2496 | .get_functions_count = aspeed_pinmux_get_fn_count, |
2497 | .get_function_name = aspeed_pinmux_get_fn_name, | 2497 | .get_function_name = aspeed_pinmux_get_fn_name, |
2498 | .get_function_groups = aspeed_pinmux_get_fn_groups, | 2498 | .get_function_groups = aspeed_pinmux_get_fn_groups, |
@@ -2501,7 +2501,7 @@ static struct pinmux_ops aspeed_g5_pinmux_ops = { | |||
2501 | .strict = true, | 2501 | .strict = true, |
2502 | }; | 2502 | }; |
2503 | 2503 | ||
2504 | static struct pinctrl_ops aspeed_g5_pinctrl_ops = { | 2504 | static const struct pinctrl_ops aspeed_g5_pinctrl_ops = { |
2505 | .get_groups_count = aspeed_pinctrl_get_groups_count, | 2505 | .get_groups_count = aspeed_pinctrl_get_groups_count, |
2506 | .get_group_name = aspeed_pinctrl_get_group_name, | 2506 | .get_group_name = aspeed_pinctrl_get_group_name, |
2507 | .get_group_pins = aspeed_pinctrl_get_group_pins, | 2507 | .get_group_pins = aspeed_pinctrl_get_group_pins, |
@@ -2510,7 +2510,7 @@ static struct pinctrl_ops aspeed_g5_pinctrl_ops = { | |||
2510 | .dt_free_map = pinctrl_utils_free_map, | 2510 | .dt_free_map = pinctrl_utils_free_map, |
2511 | }; | 2511 | }; |
2512 | 2512 | ||
2513 | static struct pinconf_ops aspeed_g5_conf_ops = { | 2513 | static const struct pinconf_ops aspeed_g5_conf_ops = { |
2514 | .is_generic = true, | 2514 | .is_generic = true, |
2515 | .pin_config_get = aspeed_pin_config_get, | 2515 | .pin_config_get = aspeed_pin_config_get, |
2516 | .pin_config_set = aspeed_pin_config_set, | 2516 | .pin_config_set = aspeed_pin_config_set, |