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>
This commit is contained in:
parent
eb190c3402
commit
a9856ef759
|
@ -716,7 +716,7 @@ static void ti_iodelay_pinconf_group_dbg_show(struct pinctrl_dev *pctldev,
|
|||
}
|
||||
#endif
|
||||
|
||||
static struct pinctrl_ops ti_iodelay_pinctrl_ops = {
|
||||
static const struct pinctrl_ops ti_iodelay_pinctrl_ops = {
|
||||
.get_groups_count = pinctrl_generic_get_group_count,
|
||||
.get_group_name = pinctrl_generic_get_group_name,
|
||||
.get_group_pins = pinctrl_generic_get_group_pins,
|
||||
|
@ -726,7 +726,7 @@ static struct pinctrl_ops ti_iodelay_pinctrl_ops = {
|
|||
.dt_node_to_map = ti_iodelay_dt_node_to_map,
|
||||
};
|
||||
|
||||
static struct pinconf_ops ti_iodelay_pinctrl_pinconf_ops = {
|
||||
static const struct pinconf_ops ti_iodelay_pinctrl_pinconf_ops = {
|
||||
.pin_config_group_get = ti_iodelay_pinconf_group_get,
|
||||
.pin_config_group_set = ti_iodelay_pinconf_group_set,
|
||||
#ifdef CONFIG_DEBUG_FS
|
||||
|
|
Loading…
Reference in New Issue