pinctrl: bcm: Constify static pinmux_ops
authorRikard Falkeborn <rikard.falkeborn@gmail.com>
Sat, 5 Jun 2021 18:59:08 +0000 (20:59 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Wed, 9 Jun 2021 09:18:33 +0000 (11:18 +0200)
These are only assigned, either directly or via the bcm63xx_pinctrl_soc
struct, to the pmxops field in the pinctrl_desc struct and never
modified, so make them const to allow the compiler to put them in
read-only memory.

Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Link: https://lore.kernel.org/r/20210605185908.39982-3-rikard.falkeborn@gmail.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/bcm/pinctrl-bcm6318.c
drivers/pinctrl/bcm/pinctrl-bcm63268.c
drivers/pinctrl/bcm/pinctrl-bcm6328.c
drivers/pinctrl/bcm/pinctrl-bcm6358.c
drivers/pinctrl/bcm/pinctrl-bcm6362.c
drivers/pinctrl/bcm/pinctrl-bcm6368.c
drivers/pinctrl/bcm/pinctrl-bcm63xx.h

index 4f96a285c3070dc5e440fb2837582c1a108c71cc..9311220fb6cba7414d5bf89fd0f10dab647adaad 100644 (file)
@@ -460,7 +460,7 @@ static const struct pinctrl_ops bcm6318_pctl_ops = {
        .get_groups_count = bcm6318_pinctrl_get_group_count,
 };
 
-static struct pinmux_ops bcm6318_pmx_ops = {
+static const struct pinmux_ops bcm6318_pmx_ops = {
        .get_function_groups = bcm6318_pinctrl_get_groups,
        .get_function_name = bcm6318_pinctrl_get_func_name,
        .get_functions_count = bcm6318_pinctrl_get_func_count,
index f1dea4e1c63e45ce7627b0cfc3fd48e86a0e9e56..1c1060a395970f648b5213beea50fb67c5e93695 100644 (file)
@@ -605,7 +605,7 @@ static const struct pinctrl_ops bcm63268_pctl_ops = {
        .get_groups_count = bcm63268_pinctrl_get_group_count,
 };
 
-static struct pinmux_ops bcm63268_pmx_ops = {
+static const struct pinmux_ops bcm63268_pmx_ops = {
        .get_function_groups = bcm63268_pinctrl_get_groups,
        .get_function_name = bcm63268_pinctrl_get_func_name,
        .get_functions_count = bcm63268_pinctrl_get_func_count,
index fc090a1609d154a3801b254143e3a69dda85538b..ffa8864abab6d57880cc0587519471985daafe38 100644 (file)
@@ -366,7 +366,7 @@ static const struct pinctrl_ops bcm6328_pctl_ops = {
        .get_groups_count = bcm6328_pinctrl_get_group_count,
 };
 
-static struct pinmux_ops bcm6328_pmx_ops = {
+static const struct pinmux_ops bcm6328_pmx_ops = {
        .get_function_groups = bcm6328_pinctrl_get_groups,
        .get_function_name = bcm6328_pinctrl_get_func_name,
        .get_functions_count = bcm6328_pinctrl_get_func_count,
index 7b316305eada3f4845408238b96307271b1fd0f9..9f6cd7447887ff622726d591d2cc5770377957d6 100644 (file)
@@ -311,7 +311,7 @@ static const struct pinctrl_ops bcm6358_pctl_ops = {
        .get_groups_count = bcm6358_pinctrl_get_group_count,
 };
 
-static struct pinmux_ops bcm6358_pmx_ops = {
+static const struct pinmux_ops bcm6358_pmx_ops = {
        .get_function_groups = bcm6358_pinctrl_get_groups,
        .get_function_name = bcm6358_pinctrl_get_func_name,
        .get_functions_count = bcm6358_pinctrl_get_func_count,
index a9e8178268edb8946933e9efd69699de43b44a2f..13c7230949b2bc042e250d0467ec3e09556f7146 100644 (file)
@@ -579,7 +579,7 @@ static const struct pinctrl_ops bcm6362_pctl_ops = {
        .get_groups_count = bcm6362_pinctrl_get_group_count,
 };
 
-static struct pinmux_ops bcm6362_pmx_ops = {
+static const struct pinmux_ops bcm6362_pmx_ops = {
        .get_function_groups = bcm6362_pinctrl_get_groups,
        .get_function_name = bcm6362_pinctrl_get_func_name,
        .get_functions_count = bcm6362_pinctrl_get_func_count,
index e3739e921f5c360d198c5fd93c70143501d790aa..b33a74aec82ba6331d68d13ed91b19325bf2b43f 100644 (file)
@@ -465,7 +465,7 @@ static const struct pinctrl_ops bcm6368_pctl_ops = {
        .get_groups_count = bcm6368_pinctrl_get_group_count,
 };
 
-static struct pinmux_ops bcm6368_pmx_ops = {
+static const struct pinmux_ops bcm6368_pmx_ops = {
        .get_function_groups = bcm6368_pinctrl_get_groups,
        .get_function_name = bcm6368_pinctrl_get_func_name,
        .get_functions_count = bcm6368_pinctrl_get_func_count,
index c135477ec768c8f6224104d3c9bc004ddb3247f0..d58c8cd5b6b8e941cb5e469074f054c09b2fc66b 100644 (file)
@@ -13,7 +13,7 @@
 
 struct bcm63xx_pinctrl_soc {
        const struct pinctrl_ops *pctl_ops;
-       struct pinmux_ops *pmx_ops;
+       const struct pinmux_ops *pmx_ops;
 
        const struct pinctrl_pin_desc *pins;
        unsigned npins;