diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2017-08-10 06:06:17 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2017-08-22 08:38:46 -0400 |
commit | 71ccb82be752a5b445006a5feacd6996d59a6a72 (patch) | |
tree | 382057a3d57a2fd14afd30832229357da3b8f96a | |
parent | baf918c4abbbf7c8b8931ea024a0c6d56cc2a9c1 (diff) |
pinctrl: sirf: atlas7: constify pinconf_ops, pinctrl_ops, and pinmux_ops structures
This pinmux_ops structure is only stored in the const pmxops field
of a pinctrl_desc structure. Make the pinmux_ops structure 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/sirf/pinctrl-atlas7.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/sirf/pinctrl-atlas7.c b/drivers/pinctrl/sirf/pinctrl-atlas7.c index 8175b109c138..4db9323251e3 100644 --- a/drivers/pinctrl/sirf/pinctrl-atlas7.c +++ b/drivers/pinctrl/sirf/pinctrl-atlas7.c | |||
@@ -5261,7 +5261,7 @@ static int atlas7_pmx_gpio_request_enable(struct pinctrl_dev *pctldev, | |||
5261 | return 0; | 5261 | return 0; |
5262 | } | 5262 | } |
5263 | 5263 | ||
5264 | static struct pinmux_ops atlas7_pinmux_ops = { | 5264 | static const struct pinmux_ops atlas7_pinmux_ops = { |
5265 | .get_functions_count = atlas7_pmx_get_funcs_count, | 5265 | .get_functions_count = atlas7_pmx_get_funcs_count, |
5266 | .get_function_name = atlas7_pmx_get_func_name, | 5266 | .get_function_name = atlas7_pmx_get_func_name, |
5267 | .get_function_groups = atlas7_pmx_get_func_groups, | 5267 | .get_function_groups = atlas7_pmx_get_func_groups, |