From: Jingoo Han Date: Wed, 7 May 2014 08:07:54 +0000 (+0900) Subject: regulator: palmas: Make of_device_id array const X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=2449df9f900f69edaa1466f27493694c2f9df2b1;p=deliverable%2Flinux.git 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 Signed-off-by: Mark Brown --- diff --git a/drivers/regulator/palmas-regulator.c b/drivers/regulator/palmas-regulator.c index 9c62b1d34685..671cb9f32dab 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", },