Skip to content

Commit

Permalink
pinctrl: Make of_device_id array const
Browse files Browse the repository at this point in the history
Make of_device_id array const, because all OF functions handle it as
const.

Signed-off-by: Kiran Padwal <kiran.padwal21@gmail.com>
Acked-by: Thierry Reding <treding@nvidia.com>
Acked-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
  • Loading branch information
Kiran Padwal authored and Linus Walleij committed Aug 29, 2014
1 parent f3ababa commit 5dfe10b
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion drivers/pinctrl/pinctrl-imx23.c
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ static int imx23_pinctrl_probe(struct platform_device *pdev)
return mxs_pinctrl_probe(pdev, &imx23_pinctrl_data);
}

static struct of_device_id imx23_pinctrl_of_match[] = {
static const struct of_device_id imx23_pinctrl_of_match[] = {
{ .compatible = "fsl,imx23-pinctrl", },
{ /* sentinel */ }
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/pinctrl-imx25.c
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ static struct imx_pinctrl_soc_info imx25_pinctrl_info = {
.npins = ARRAY_SIZE(imx25_pinctrl_pads),
};

static struct of_device_id imx25_pinctrl_of_match[] = {
static const struct of_device_id imx25_pinctrl_of_match[] = {
{ .compatible = "fsl,imx25-iomuxc", },
{ /* sentinel */ }
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/pinctrl-imx27.c
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ static struct imx1_pinctrl_soc_info imx27_pinctrl_info = {
.npins = ARRAY_SIZE(imx27_pinctrl_pads),
};

static struct of_device_id imx27_pinctrl_of_match[] = {
static const struct of_device_id imx27_pinctrl_of_match[] = {
{ .compatible = "fsl,imx27-iomuxc", },
{ /* sentinel */ }
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/pinctrl-imx28.c
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ static int imx28_pinctrl_probe(struct platform_device *pdev)
return mxs_pinctrl_probe(pdev, &imx28_pinctrl_data);
}

static struct of_device_id imx28_pinctrl_of_match[] = {
static const struct of_device_id imx28_pinctrl_of_match[] = {
{ .compatible = "fsl,imx28-pinctrl", },
{ /* sentinel */ }
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/pinctrl-imx35.c
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ static struct imx_pinctrl_soc_info imx35_pinctrl_info = {
.npins = ARRAY_SIZE(imx35_pinctrl_pads),
};

static struct of_device_id imx35_pinctrl_of_match[] = {
static const struct of_device_id imx35_pinctrl_of_match[] = {
{ .compatible = "fsl,imx35-iomuxc", },
{ /* sentinel */ }
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/pinctrl-imx50.c
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ static struct imx_pinctrl_soc_info imx50_pinctrl_info = {
.npins = ARRAY_SIZE(imx50_pinctrl_pads),
};

static struct of_device_id imx50_pinctrl_of_match[] = {
static const struct of_device_id imx50_pinctrl_of_match[] = {
{ .compatible = "fsl,imx50-iomuxc", },
{ /* sentinel */ }
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/pinctrl-imx51.c
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ static struct imx_pinctrl_soc_info imx51_pinctrl_info = {
.npins = ARRAY_SIZE(imx51_pinctrl_pads),
};

static struct of_device_id imx51_pinctrl_of_match[] = {
static const struct of_device_id imx51_pinctrl_of_match[] = {
{ .compatible = "fsl,imx51-iomuxc", },
{ /* sentinel */ }
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/pinctrl-imx53.c
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ static struct imx_pinctrl_soc_info imx53_pinctrl_info = {
.npins = ARRAY_SIZE(imx53_pinctrl_pads),
};

static struct of_device_id imx53_pinctrl_of_match[] = {
static const struct of_device_id imx53_pinctrl_of_match[] = {
{ .compatible = "fsl,imx53-iomuxc", },
{ /* sentinel */ }
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/pinctrl-imx6dl.c
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ static struct imx_pinctrl_soc_info imx6dl_pinctrl_info = {
.npins = ARRAY_SIZE(imx6dl_pinctrl_pads),
};

static struct of_device_id imx6dl_pinctrl_of_match[] = {
static const struct of_device_id imx6dl_pinctrl_of_match[] = {
{ .compatible = "fsl,imx6dl-iomuxc", },
{ /* sentinel */ }
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/pinctrl-imx6q.c
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ static struct imx_pinctrl_soc_info imx6q_pinctrl_info = {
.npins = ARRAY_SIZE(imx6q_pinctrl_pads),
};

static struct of_device_id imx6q_pinctrl_of_match[] = {
static const struct of_device_id imx6q_pinctrl_of_match[] = {
{ .compatible = "fsl,imx6q-iomuxc", },
{ /* sentinel */ }
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/pinctrl-imx6sl.c
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ static struct imx_pinctrl_soc_info imx6sl_pinctrl_info = {
.npins = ARRAY_SIZE(imx6sl_pinctrl_pads),
};

static struct of_device_id imx6sl_pinctrl_of_match[] = {
static const struct of_device_id imx6sl_pinctrl_of_match[] = {
{ .compatible = "fsl,imx6sl-iomuxc", },
{ /* sentinel */ }
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/pinctrl-imx6sx.c
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ static struct imx_pinctrl_soc_info imx6sx_pinctrl_info = {
.npins = ARRAY_SIZE(imx6sx_pinctrl_pads),
};

static struct of_device_id imx6sx_pinctrl_of_match[] = {
static const struct of_device_id imx6sx_pinctrl_of_match[] = {
{ .compatible = "fsl,imx6sx-iomuxc", },
{ /* sentinel */ }
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/pinctrl-tegra114.c
Original file line number Diff line number Diff line change
Expand Up @@ -1850,7 +1850,7 @@ static int tegra114_pinctrl_probe(struct platform_device *pdev)
return tegra_pinctrl_probe(pdev, &tegra114_pinctrl);
}

static struct of_device_id tegra114_pinctrl_of_match[] = {
static const struct of_device_id tegra114_pinctrl_of_match[] = {
{ .compatible = "nvidia,tegra114-pinmux", },
{ },
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/pinctrl-tegra124.c
Original file line number Diff line number Diff line change
Expand Up @@ -1996,7 +1996,7 @@ static int tegra124_pinctrl_probe(struct platform_device *pdev)
return tegra_pinctrl_probe(pdev, &tegra124_pinctrl);
}

static struct of_device_id tegra124_pinctrl_of_match[] = {
static const struct of_device_id tegra124_pinctrl_of_match[] = {
{ .compatible = "nvidia,tegra124-pinmux", },
{ },
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/pinctrl-tegra20.c
Original file line number Diff line number Diff line change
Expand Up @@ -2228,7 +2228,7 @@ static int tegra20_pinctrl_probe(struct platform_device *pdev)
return tegra_pinctrl_probe(pdev, &tegra20_pinctrl);
}

static struct of_device_id tegra20_pinctrl_of_match[] = {
static const struct of_device_id tegra20_pinctrl_of_match[] = {
{ .compatible = "nvidia,tegra20-pinmux", },
{ },
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/pinctrl-tegra30.c
Original file line number Diff line number Diff line change
Expand Up @@ -2484,7 +2484,7 @@ static int tegra30_pinctrl_probe(struct platform_device *pdev)
return tegra_pinctrl_probe(pdev, &tegra30_pinctrl);
}

static struct of_device_id tegra30_pinctrl_of_match[] = {
static const struct of_device_id tegra30_pinctrl_of_match[] = {
{ .compatible = "nvidia,tegra30-pinmux", },
{ },
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/spear/pinctrl-spear1310.c
Original file line number Diff line number Diff line change
Expand Up @@ -2692,7 +2692,7 @@ static struct spear_pinctrl_machdata spear1310_machdata = {
.modes_supported = false,
};

static struct of_device_id spear1310_pinctrl_of_match[] = {
static const struct of_device_id spear1310_pinctrl_of_match[] = {
{
.compatible = "st,spear1310-pinmux",
},
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/spear/pinctrl-spear1340.c
Original file line number Diff line number Diff line change
Expand Up @@ -2008,7 +2008,7 @@ static struct spear_pinctrl_machdata spear1340_machdata = {
.modes_supported = false,
};

static struct of_device_id spear1340_pinctrl_of_match[] = {
static const struct of_device_id spear1340_pinctrl_of_match[] = {
{
.compatible = "st,spear1340-pinmux",
},
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/spear/pinctrl-spear300.c
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ static struct spear_function *spear300_functions[] = {
&gpio1_function,
};

static struct of_device_id spear300_pinctrl_of_match[] = {
static const struct of_device_id spear300_pinctrl_of_match[] = {
{
.compatible = "st,spear300-pinmux",
},
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/spear/pinctrl-spear310.c
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ static struct spear_function *spear310_functions[] = {
&tdm_function,
};

static struct of_device_id spear310_pinctrl_of_match[] = {
static const struct of_device_id spear310_pinctrl_of_match[] = {
{
.compatible = "st,spear310-pinmux",
},
Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/spear/pinctrl-spear320.c
Original file line number Diff line number Diff line change
Expand Up @@ -3410,7 +3410,7 @@ static struct spear_function *spear320_functions[] = {
&i2c2_function,
};

static struct of_device_id spear320_pinctrl_of_match[] = {
static const struct of_device_id spear320_pinctrl_of_match[] = {
{
.compatible = "st,spear320-pinmux",
},
Expand Down

0 comments on commit 5dfe10b

Please sign in to comment.