Commit baa9946e authored by Fabian Frederick's avatar Fabian Frederick Committed by Linus Walleij

pinctrl: constify of_device_id array

of_device_id is always used as const.
(See driver.of_match_table and open firmware functions)
Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Acked-by: default avatarJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Acked-by: default avatarPatrice Chotard <patrice.chotard@st.com>
Acked-by: default avatarMaxime Coquelin <maxime.coquelin@st.com>
Acked-by: default avatarHongzhou Yang <hongzhou.yang@mediatek.com>
Acked-by: default avatarLee Jones <lee@kernel.org>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 4024efb4
...@@ -1051,7 +1051,7 @@ static int bcm2835_pinctrl_remove(struct platform_device *pdev) ...@@ -1051,7 +1051,7 @@ static int bcm2835_pinctrl_remove(struct platform_device *pdev)
return 0; return 0;
} }
static struct of_device_id bcm2835_pinctrl_match[] = { static const struct of_device_id bcm2835_pinctrl_match[] = {
{ .compatible = "brcm,bcm2835-gpio" }, { .compatible = "brcm,bcm2835-gpio" },
{} {}
}; };
......
...@@ -348,7 +348,9 @@ static int mt8135_pinctrl_probe(struct platform_device *pdev) ...@@ -348,7 +348,9 @@ static int mt8135_pinctrl_probe(struct platform_device *pdev)
} }
static const struct of_device_id mt8135_pctrl_match[] = { static const struct of_device_id mt8135_pctrl_match[] = {
{ .compatible = "mediatek,mt8135-pinctrl", }, {
.compatible = "mediatek,mt8135-pinctrl",
},
{ } { }
}; };
MODULE_DEVICE_TABLE(of, mt8135_pctrl_match); MODULE_DEVICE_TABLE(of, mt8135_pctrl_match);
......
...@@ -428,7 +428,9 @@ static int mt8173_pinctrl_probe(struct platform_device *pdev) ...@@ -428,7 +428,9 @@ static int mt8173_pinctrl_probe(struct platform_device *pdev)
} }
static const struct of_device_id mt8173_pctrl_match[] = { static const struct of_device_id mt8173_pctrl_match[] = {
{ .compatible = "mediatek,mt8173-pinctrl", }, {
.compatible = "mediatek,mt8173-pinctrl",
},
{ } { }
}; };
MODULE_DEVICE_TABLE(of, mt8173_pctrl_match); MODULE_DEVICE_TABLE(of, mt8173_pctrl_match);
......
...@@ -379,7 +379,7 @@ static struct mvebu_mpp_mode mv88f6710_mpp_modes[] = { ...@@ -379,7 +379,7 @@ static struct mvebu_mpp_mode mv88f6710_mpp_modes[] = {
static struct mvebu_pinctrl_soc_info armada_370_pinctrl_info; static struct mvebu_pinctrl_soc_info armada_370_pinctrl_info;
static struct of_device_id armada_370_pinctrl_of_match[] = { static const struct of_device_id armada_370_pinctrl_of_match[] = {
{ .compatible = "marvell,mv88f6710-pinctrl" }, { .compatible = "marvell,mv88f6710-pinctrl" },
{ }, { },
}; };
......
...@@ -399,7 +399,7 @@ static struct mvebu_mpp_mode mv88f6720_mpp_modes[] = { ...@@ -399,7 +399,7 @@ static struct mvebu_mpp_mode mv88f6720_mpp_modes[] = {
static struct mvebu_pinctrl_soc_info armada_375_pinctrl_info; static struct mvebu_pinctrl_soc_info armada_375_pinctrl_info;
static struct of_device_id armada_375_pinctrl_of_match[] = { static const struct of_device_id armada_375_pinctrl_of_match[] = {
{ .compatible = "marvell,mv88f6720-pinctrl" }, { .compatible = "marvell,mv88f6720-pinctrl" },
{ }, { },
}; };
......
...@@ -389,7 +389,7 @@ static struct mvebu_mpp_mode armada_38x_mpp_modes[] = { ...@@ -389,7 +389,7 @@ static struct mvebu_mpp_mode armada_38x_mpp_modes[] = {
static struct mvebu_pinctrl_soc_info armada_38x_pinctrl_info; static struct mvebu_pinctrl_soc_info armada_38x_pinctrl_info;
static struct of_device_id armada_38x_pinctrl_of_match[] = { static const struct of_device_id armada_38x_pinctrl_of_match[] = {
{ {
.compatible = "marvell,mv88f6810-pinctrl", .compatible = "marvell,mv88f6810-pinctrl",
.data = (void *) V_88F6810, .data = (void *) V_88F6810,
......
...@@ -362,7 +362,7 @@ static struct mvebu_mpp_mode armada_39x_mpp_modes[] = { ...@@ -362,7 +362,7 @@ static struct mvebu_mpp_mode armada_39x_mpp_modes[] = {
static struct mvebu_pinctrl_soc_info armada_39x_pinctrl_info; static struct mvebu_pinctrl_soc_info armada_39x_pinctrl_info;
static struct of_device_id armada_39x_pinctrl_of_match[] = { static const struct of_device_id armada_39x_pinctrl_of_match[] = {
{ {
.compatible = "marvell,mv88f6920-pinctrl", .compatible = "marvell,mv88f6920-pinctrl",
.data = (void *) V_88F6920, .data = (void *) V_88F6920,
......
...@@ -362,7 +362,7 @@ static struct mvebu_mpp_mode armada_xp_mpp_modes[] = { ...@@ -362,7 +362,7 @@ static struct mvebu_mpp_mode armada_xp_mpp_modes[] = {
static struct mvebu_pinctrl_soc_info armada_xp_pinctrl_info; static struct mvebu_pinctrl_soc_info armada_xp_pinctrl_info;
static struct of_device_id armada_xp_pinctrl_of_match[] = { static const struct of_device_id armada_xp_pinctrl_of_match[] = {
{ {
.compatible = "marvell,mv78230-pinctrl", .compatible = "marvell,mv78230-pinctrl",
.data = (void *) V_MV78230, .data = (void *) V_MV78230,
......
...@@ -456,7 +456,7 @@ static struct mvebu_pinctrl_soc_info mv98dx4122_info = { ...@@ -456,7 +456,7 @@ static struct mvebu_pinctrl_soc_info mv98dx4122_info = {
.ngpioranges = ARRAY_SIZE(mv88f628x_gpio_ranges), .ngpioranges = ARRAY_SIZE(mv88f628x_gpio_ranges),
}; };
static struct of_device_id kirkwood_pinctrl_of_match[] = { static const struct of_device_id kirkwood_pinctrl_of_match[] = {
{ .compatible = "marvell,88f6180-pinctrl", .data = &mv88f6180_info }, { .compatible = "marvell,88f6180-pinctrl", .data = &mv88f6180_info },
{ .compatible = "marvell,88f6190-pinctrl", .data = &mv88f6190_info }, { .compatible = "marvell,88f6190-pinctrl", .data = &mv88f6190_info },
{ .compatible = "marvell,88f6192-pinctrl", .data = &mv88f6192_info }, { .compatible = "marvell,88f6192-pinctrl", .data = &mv88f6192_info },
......
...@@ -211,7 +211,7 @@ static struct mvebu_pinctrl_soc_info mv88f5281_info = { ...@@ -211,7 +211,7 @@ static struct mvebu_pinctrl_soc_info mv88f5281_info = {
* There are multiple variants of the Orion SoCs, but in terms of pin * There are multiple variants of the Orion SoCs, but in terms of pin
* muxing, they are identical. * muxing, they are identical.
*/ */
static struct of_device_id orion_pinctrl_of_match[] = { static const struct of_device_id orion_pinctrl_of_match[] = {
{ .compatible = "marvell,88f5181l-pinctrl", .data = &mv88f5181l_info }, { .compatible = "marvell,88f5181l-pinctrl", .data = &mv88f5181l_info },
{ .compatible = "marvell,88f5182-pinctrl", .data = &mv88f5182_info }, { .compatible = "marvell,88f5182-pinctrl", .data = &mv88f5182_info },
{ .compatible = "marvell,88f5281-pinctrl", .data = &mv88f5281_info }, { .compatible = "marvell,88f5281-pinctrl", .data = &mv88f5281_info },
......
...@@ -625,7 +625,7 @@ static int as3722_pinctrl_remove(struct platform_device *pdev) ...@@ -625,7 +625,7 @@ static int as3722_pinctrl_remove(struct platform_device *pdev)
return 0; return 0;
} }
static struct of_device_id as3722_pinctrl_of_match[] = { static const struct of_device_id as3722_pinctrl_of_match[] = {
{ .compatible = "ams,as3722-pinctrl", }, { .compatible = "ams,as3722-pinctrl", },
{ }, { },
}; };
......
...@@ -1114,7 +1114,7 @@ static int at91_pinctrl_parse_functions(struct device_node *np, ...@@ -1114,7 +1114,7 @@ static int at91_pinctrl_parse_functions(struct device_node *np,
return 0; return 0;
} }
static struct of_device_id at91_pinctrl_of_match[] = { static const struct of_device_id at91_pinctrl_of_match[] = {
{ .compatible = "atmel,sama5d3-pinctrl", .data = &sama5d3_ops }, { .compatible = "atmel,sama5d3-pinctrl", .data = &sama5d3_ops },
{ .compatible = "atmel,at91sam9x5-pinctrl", .data = &at91sam9x5_ops }, { .compatible = "atmel,at91sam9x5-pinctrl", .data = &at91sam9x5_ops },
{ .compatible = "atmel,at91rm9200-pinctrl", .data = &at91rm9200_ops }, { .compatible = "atmel,at91rm9200-pinctrl", .data = &at91rm9200_ops },
...@@ -1693,7 +1693,7 @@ static struct gpio_chip at91_gpio_template = { ...@@ -1693,7 +1693,7 @@ static struct gpio_chip at91_gpio_template = {
.ngpio = MAX_NB_GPIO_PER_BANK, .ngpio = MAX_NB_GPIO_PER_BANK,
}; };
static struct of_device_id at91_gpio_of_match[] = { static const struct of_device_id at91_gpio_of_match[] = {
{ .compatible = "atmel,at91sam9x5-gpio", .data = &at91sam9x5_ops, }, { .compatible = "atmel,at91sam9x5-gpio", .data = &at91sam9x5_ops, },
{ .compatible = "atmel,at91rm9200-gpio", .data = &at91rm9200_ops }, { .compatible = "atmel,at91rm9200-gpio", .data = &at91rm9200_ops },
{ /* sentinel */ } { /* sentinel */ }
......
...@@ -987,7 +987,7 @@ static struct palmas_pinctrl_data tps80036_pinctrl_data = { ...@@ -987,7 +987,7 @@ static struct palmas_pinctrl_data tps80036_pinctrl_data = {
.num_pin_groups = ARRAY_SIZE(tps80036_pingroups), .num_pin_groups = ARRAY_SIZE(tps80036_pingroups),
}; };
static struct of_device_id palmas_pinctrl_of_match[] = { static const struct of_device_id palmas_pinctrl_of_match[] = {
{ .compatible = "ti,palmas-pinctrl", .data = &tps65913_pinctrl_data}, { .compatible = "ti,palmas-pinctrl", .data = &tps65913_pinctrl_data},
{ .compatible = "ti,tps65913-pinctrl", .data = &tps65913_pinctrl_data}, { .compatible = "ti,tps65913-pinctrl", .data = &tps65913_pinctrl_data},
{ .compatible = "ti,tps80036-pinctrl", .data = &tps80036_pinctrl_data}, { .compatible = "ti,tps80036-pinctrl", .data = &tps80036_pinctrl_data},
......
...@@ -1501,7 +1501,7 @@ static void pcs_free_resources(struct pcs_device *pcs) ...@@ -1501,7 +1501,7 @@ static void pcs_free_resources(struct pcs_device *pcs)
} \ } \
} while (0); } while (0);
static struct of_device_id pcs_of_match[]; static const struct of_device_id pcs_of_match[];
static int pcs_add_gpio_func(struct device_node *node, struct pcs_device *pcs) static int pcs_add_gpio_func(struct device_node *node, struct pcs_device *pcs)
{ {
...@@ -2000,7 +2000,7 @@ static const struct pcs_soc_data pinconf_single = { ...@@ -2000,7 +2000,7 @@ static const struct pcs_soc_data pinconf_single = {
.flags = PCS_FEAT_PINCONF, .flags = PCS_FEAT_PINCONF,
}; };
static struct of_device_id pcs_of_match[] = { static const struct of_device_id pcs_of_match[] = {
{ .compatible = "ti,omap3-padconf", .data = &pinctrl_single_omap_wkup }, { .compatible = "ti,omap3-padconf", .data = &pinctrl_single_omap_wkup },
{ .compatible = "ti,omap4-padconf", .data = &pinctrl_single_omap_wkup }, { .compatible = "ti,omap4-padconf", .data = &pinctrl_single_omap_wkup },
{ .compatible = "ti,omap5-padconf", .data = &pinctrl_single_omap_wkup }, { .compatible = "ti,omap5-padconf", .data = &pinctrl_single_omap_wkup },
......
...@@ -1590,7 +1590,7 @@ static int st_gpiolib_register_bank(struct st_pinctrl *info, ...@@ -1590,7 +1590,7 @@ static int st_gpiolib_register_bank(struct st_pinctrl *info,
return 0; return 0;
} }
static struct of_device_id st_pctl_of_match[] = { static const struct of_device_id st_pctl_of_match[] = {
{ .compatible = "st,stih415-sbc-pinctrl", .data = &stih415_sbc_data }, { .compatible = "st,stih415-sbc-pinctrl", .data = &stih415_sbc_data },
{ .compatible = "st,stih415-rear-pinctrl", .data = &stih415_rear_data }, { .compatible = "st,stih415-rear-pinctrl", .data = &stih415_rear_data },
{ .compatible = "st,stih415-left-pinctrl", .data = &stih415_left_data }, { .compatible = "st,stih415-left-pinctrl", .data = &stih415_left_data },
......
...@@ -969,7 +969,7 @@ static int tz1090_pdc_pinctrl_remove(struct platform_device *pdev) ...@@ -969,7 +969,7 @@ static int tz1090_pdc_pinctrl_remove(struct platform_device *pdev)
return 0; return 0;
} }
static struct of_device_id tz1090_pdc_pinctrl_of_match[] = { static const struct of_device_id tz1090_pdc_pinctrl_of_match[] = {
{ .compatible = "img,tz1090-pdc-pinctrl", }, { .compatible = "img,tz1090-pdc-pinctrl", },
{ }, { },
}; };
......
...@@ -1984,7 +1984,7 @@ static int tz1090_pinctrl_remove(struct platform_device *pdev) ...@@ -1984,7 +1984,7 @@ static int tz1090_pinctrl_remove(struct platform_device *pdev)
return 0; return 0;
} }
static struct of_device_id tz1090_pinctrl_of_match[] = { static const struct of_device_id tz1090_pinctrl_of_match[] = {
{ .compatible = "img,tz1090-pinctrl", }, { .compatible = "img,tz1090-pinctrl", },
{ }, { },
}; };
......
...@@ -1019,7 +1019,7 @@ static int sun4i_a10_pinctrl_probe(struct platform_device *pdev) ...@@ -1019,7 +1019,7 @@ static int sun4i_a10_pinctrl_probe(struct platform_device *pdev)
&sun4i_a10_pinctrl_data); &sun4i_a10_pinctrl_data);
} }
static struct of_device_id sun4i_a10_pinctrl_match[] = { static const struct of_device_id sun4i_a10_pinctrl_match[] = {
{ .compatible = "allwinner,sun4i-a10-pinctrl", }, { .compatible = "allwinner,sun4i-a10-pinctrl", },
{} {}
}; };
......
...@@ -670,7 +670,7 @@ static int sun5i_a10s_pinctrl_probe(struct platform_device *pdev) ...@@ -670,7 +670,7 @@ static int sun5i_a10s_pinctrl_probe(struct platform_device *pdev)
&sun5i_a10s_pinctrl_data); &sun5i_a10s_pinctrl_data);
} }
static struct of_device_id sun5i_a10s_pinctrl_match[] = { static const struct of_device_id sun5i_a10s_pinctrl_match[] = {
{ .compatible = "allwinner,sun5i-a10s-pinctrl", }, { .compatible = "allwinner,sun5i-a10s-pinctrl", },
{} {}
}; };
......
...@@ -388,7 +388,7 @@ static int sun5i_a13_pinctrl_probe(struct platform_device *pdev) ...@@ -388,7 +388,7 @@ static int sun5i_a13_pinctrl_probe(struct platform_device *pdev)
&sun5i_a13_pinctrl_data); &sun5i_a13_pinctrl_data);
} }
static struct of_device_id sun5i_a13_pinctrl_match[] = { static const struct of_device_id sun5i_a13_pinctrl_match[] = {
{ .compatible = "allwinner,sun5i-a13-pinctrl", }, { .compatible = "allwinner,sun5i-a13-pinctrl", },
{} {}
}; };
......
...@@ -120,7 +120,7 @@ static int sun6i_a31_r_pinctrl_probe(struct platform_device *pdev) ...@@ -120,7 +120,7 @@ static int sun6i_a31_r_pinctrl_probe(struct platform_device *pdev)
return ret; return ret;
} }
static struct of_device_id sun6i_a31_r_pinctrl_match[] = { static const struct of_device_id sun6i_a31_r_pinctrl_match[] = {
{ .compatible = "allwinner,sun6i-a31-r-pinctrl", }, { .compatible = "allwinner,sun6i-a31-r-pinctrl", },
{} {}
}; };
......
...@@ -922,7 +922,7 @@ static int sun6i_a31_pinctrl_probe(struct platform_device *pdev) ...@@ -922,7 +922,7 @@ static int sun6i_a31_pinctrl_probe(struct platform_device *pdev)
&sun6i_a31_pinctrl_data); &sun6i_a31_pinctrl_data);
} }
static struct of_device_id sun6i_a31_pinctrl_match[] = { static const struct of_device_id sun6i_a31_pinctrl_match[] = {
{ .compatible = "allwinner,sun6i-a31-pinctrl", }, { .compatible = "allwinner,sun6i-a31-pinctrl", },
{} {}
}; };
......
...@@ -794,7 +794,7 @@ static int sun6i_a31s_pinctrl_probe(struct platform_device *pdev) ...@@ -794,7 +794,7 @@ static int sun6i_a31s_pinctrl_probe(struct platform_device *pdev)
&sun6i_a31s_pinctrl_data); &sun6i_a31s_pinctrl_data);
} }
static struct of_device_id sun6i_a31s_pinctrl_match[] = { static const struct of_device_id sun6i_a31s_pinctrl_match[] = {
{ .compatible = "allwinner,sun6i-a31s-pinctrl", }, { .compatible = "allwinner,sun6i-a31s-pinctrl", },
{} {}
}; };
......
...@@ -1045,7 +1045,7 @@ static int sun7i_a20_pinctrl_probe(struct platform_device *pdev) ...@@ -1045,7 +1045,7 @@ static int sun7i_a20_pinctrl_probe(struct platform_device *pdev)
&sun7i_a20_pinctrl_data); &sun7i_a20_pinctrl_data);
} }
static struct of_device_id sun7i_a20_pinctrl_match[] = { static const struct of_device_id sun7i_a20_pinctrl_match[] = {
{ .compatible = "allwinner,sun7i-a20-pinctrl", }, { .compatible = "allwinner,sun7i-a20-pinctrl", },
{} {}
}; };
......
...@@ -119,7 +119,7 @@ static int sun8i_a23_r_pinctrl_probe(struct platform_device *pdev) ...@@ -119,7 +119,7 @@ static int sun8i_a23_r_pinctrl_probe(struct platform_device *pdev)
return ret; return ret;
} }
static struct of_device_id sun8i_a23_r_pinctrl_match[] = { static const struct of_device_id sun8i_a23_r_pinctrl_match[] = {
{ .compatible = "allwinner,sun8i-a23-r-pinctrl", }, { .compatible = "allwinner,sun8i-a23-r-pinctrl", },
{} {}
}; };
......
...@@ -571,7 +571,7 @@ static int sun8i_a23_pinctrl_probe(struct platform_device *pdev) ...@@ -571,7 +571,7 @@ static int sun8i_a23_pinctrl_probe(struct platform_device *pdev)
&sun8i_a23_pinctrl_data); &sun8i_a23_pinctrl_data);
} }
static struct of_device_id sun8i_a23_pinctrl_match[] = { static const struct of_device_id sun8i_a23_pinctrl_match[] = {
{ .compatible = "allwinner,sun8i-a23-pinctrl", }, { .compatible = "allwinner,sun8i-a23-pinctrl", },
{} {}
}; };
......
...@@ -729,7 +729,7 @@ static int sun9i_a80_pinctrl_probe(struct platform_device *pdev) ...@@ -729,7 +729,7 @@ static int sun9i_a80_pinctrl_probe(struct platform_device *pdev)
&sun9i_a80_pinctrl_data); &sun9i_a80_pinctrl_data);
} }
static struct of_device_id sun9i_a80_pinctrl_match[] = { static const struct of_device_id sun9i_a80_pinctrl_match[] = {
{ .compatible = "allwinner,sun9i-a80-pinctrl", }, { .compatible = "allwinner,sun9i-a80-pinctrl", },
{} {}
}; };
......
...@@ -478,7 +478,7 @@ static int vt8500_pinctrl_remove(struct platform_device *pdev) ...@@ -478,7 +478,7 @@ static int vt8500_pinctrl_remove(struct platform_device *pdev)
return wmt_pinctrl_remove(pdev); return wmt_pinctrl_remove(pdev);
} }
static struct of_device_id wmt_pinctrl_of_match[] = { static const struct of_device_id wmt_pinctrl_of_match[] = {
{ .compatible = "via,vt8500-pinctrl" }, { .compatible = "via,vt8500-pinctrl" },
{ /* sentinel */ }, { /* sentinel */ },
}; };
......
...@@ -509,7 +509,7 @@ static int wm8505_pinctrl_remove(struct platform_device *pdev) ...@@ -509,7 +509,7 @@ static int wm8505_pinctrl_remove(struct platform_device *pdev)
return wmt_pinctrl_remove(pdev); return wmt_pinctrl_remove(pdev);
} }
static struct of_device_id wmt_pinctrl_of_match[] = { static const struct of_device_id wmt_pinctrl_of_match[] = {
{ .compatible = "wm,wm8505-pinctrl" }, { .compatible = "wm,wm8505-pinctrl" },
{ /* sentinel */ }, { /* sentinel */ },
}; };
......
...@@ -347,7 +347,7 @@ static int wm8650_pinctrl_remove(struct platform_device *pdev) ...@@ -347,7 +347,7 @@ static int wm8650_pinctrl_remove(struct platform_device *pdev)
return wmt_pinctrl_remove(pdev); return wmt_pinctrl_remove(pdev);
} }
static struct of_device_id wmt_pinctrl_of_match[] = { static const struct of_device_id wmt_pinctrl_of_match[] = {
{ .compatible = "wm,wm8650-pinctrl" }, { .compatible = "wm,wm8650-pinctrl" },
{ /* sentinel */ }, { /* sentinel */ },
}; };
......
...@@ -386,7 +386,7 @@ static int wm8750_pinctrl_remove(struct platform_device *pdev) ...@@ -386,7 +386,7 @@ static int wm8750_pinctrl_remove(struct platform_device *pdev)
return wmt_pinctrl_remove(pdev); return wmt_pinctrl_remove(pdev);
} }
static struct of_device_id wmt_pinctrl_of_match[] = { static const struct of_device_id wmt_pinctrl_of_match[] = {
{ .compatible = "wm,wm8750-pinctrl" }, { .compatible = "wm,wm8750-pinctrl" },
{ /* sentinel */ }, { /* sentinel */ },
}; };
......
...@@ -365,7 +365,7 @@ static int wm8850_pinctrl_remove(struct platform_device *pdev) ...@@ -365,7 +365,7 @@ static int wm8850_pinctrl_remove(struct platform_device *pdev)
return wmt_pinctrl_remove(pdev); return wmt_pinctrl_remove(pdev);
} }
static struct of_device_id wmt_pinctrl_of_match[] = { static const struct of_device_id wmt_pinctrl_of_match[] = {
{ .compatible = "wm,wm8850-pinctrl" }, { .compatible = "wm,wm8850-pinctrl" },
{ /* sentinel */ }, { /* sentinel */ },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment