diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2017-08-10 06:06:28 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2017-08-22 08:42:48 -0400 |
commit | a9856ef75982248334420dc3cb6f80680e5ecf45 (patch) | |
tree | cc767b4460ade66a889056b332cb2faf23babb5a | |
parent | eb190c3402172e0a547097e3bbc20e3e989c7694 (diff) |
pinctrl: ti-iodelay: constify pinconf_ops, pinctrl_ops, and pinmux_ops structures
These structures are only stored in fields of a pinctrl_desc
structure (confops and pctlops) 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/ti/pinctrl-ti-iodelay.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pinctrl/ti/pinctrl-ti-iodelay.c b/drivers/pinctrl/ti/pinctrl-ti-iodelay.c index 362c50918c13..5c1b6325d80d 100644 --- a/drivers/pinctrl/ti/pinctrl-ti-iodelay.c +++ b/drivers/pinctrl/ti/pinctrl-ti-iodelay.c | |||
@@ -716,7 +716,7 @@ static void ti_iodelay_pinconf_group_dbg_show(struct pinctrl_dev *pctldev, | |||
716 | } | 716 | } |
717 | #endif | 717 | #endif |
718 | 718 | ||
719 | static struct pinctrl_ops ti_iodelay_pinctrl_ops = { | 719 | static const struct pinctrl_ops ti_iodelay_pinctrl_ops = { |
720 | .get_groups_count = pinctrl_generic_get_group_count, | 720 | .get_groups_count = pinctrl_generic_get_group_count, |
721 | .get_group_name = pinctrl_generic_get_group_name, | 721 | .get_group_name = pinctrl_generic_get_group_name, |
722 | .get_group_pins = pinctrl_generic_get_group_pins, | 722 | .get_group_pins = pinctrl_generic_get_group_pins, |
@@ -726,7 +726,7 @@ static struct pinctrl_ops ti_iodelay_pinctrl_ops = { | |||
726 | .dt_node_to_map = ti_iodelay_dt_node_to_map, | 726 | .dt_node_to_map = ti_iodelay_dt_node_to_map, |
727 | }; | 727 | }; |
728 | 728 | ||
729 | static struct pinconf_ops ti_iodelay_pinctrl_pinconf_ops = { | 729 | static const struct pinconf_ops ti_iodelay_pinctrl_pinconf_ops = { |
730 | .pin_config_group_get = ti_iodelay_pinconf_group_get, | 730 | .pin_config_group_get = ti_iodelay_pinconf_group_get, |
731 | .pin_config_group_set = ti_iodelay_pinconf_group_set, | 731 | .pin_config_group_set = ti_iodelay_pinconf_group_set, |
732 | #ifdef CONFIG_DEBUG_FS | 732 | #ifdef CONFIG_DEBUG_FS |