diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-05-07 17:07:54 +0900 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-05-07 20:55:41 +0100 |
commit | 2449df9f900f69edaa1466f27493694c2f9df2b1 (patch) | |
tree | 17d1d080081face17ba6309bc1d3dfed943cbcba /drivers | |
parent | a799baab129cbe0db20a666ceae9145928fc00fe (diff) | |
download | op-kernel-dev-2449df9f900f69edaa1466f27493694c2f9df2b1.zip op-kernel-dev-2449df9f900f69edaa1466f27493694c2f9df2b1.tar.gz |
regulator: palmas: Make of_device_id array const
Make of_device_id array const, because all OF functions
handle it as const.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/regulator/palmas-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/palmas-regulator.c b/drivers/regulator/palmas-regulator.c index 9c62b1d..671cb9f 100644 --- a/drivers/regulator/palmas-regulator.c +++ b/drivers/regulator/palmas-regulator.c @@ -1199,7 +1199,7 @@ static int palmas_regulators_probe(struct platform_device *pdev) return 0; } -static struct of_device_id of_palmas_match_tbl[] = { +static const struct of_device_id of_palmas_match_tbl[] = { { .compatible = "ti,palmas-pmic", }, { .compatible = "ti,twl6035-pmic", }, { .compatible = "ti,twl6036-pmic", }, |