From: Fabian Frederick Date: Mon, 16 Mar 2015 19:17:08 +0000 (+0100) Subject: regulator: constify of_device_id array X-Git-Tag: v4.1-rc1~162^2~1^4~2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=cdbf6f0e8e58ec4601546d0ab67da905d4a2e6f5;p=karo-tx-linux.git regulator: 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: Fabian Frederick Signed-off-by: Mark Brown --- diff --git a/drivers/regulator/palmas-regulator.c b/drivers/regulator/palmas-regulator.c index 9205f433573c..eecce1e66320 100644 --- a/drivers/regulator/palmas-regulator.c +++ b/drivers/regulator/palmas-regulator.c @@ -1505,7 +1505,7 @@ static void palmas_dt_to_pdata(struct device *dev, pdata->ldo6_vibrator = of_property_read_bool(node, "ti,ldo6-vibrator"); } -static struct of_device_id of_palmas_match_tbl[] = { +static const struct of_device_id of_palmas_match_tbl[] = { { .compatible = "ti,palmas-pmic", .data = &palmas_ddata,