diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-03-16 15:17:08 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-03-17 08:10:50 -0400 |
commit | cdbf6f0e8e58ec4601546d0ab67da905d4a2e6f5 (patch) | |
tree | 119323be69f47de88fc7b3ed653adafa765b797a | |
parent | c517d838eb7d07bbe9507871fab3931deccff539 (diff) |
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 <fabf@skynet.be>
Signed-off-by: Mark Brown <broonie@kernel.org>
-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 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, | |||
1505 | pdata->ldo6_vibrator = of_property_read_bool(node, "ti,ldo6-vibrator"); | 1505 | pdata->ldo6_vibrator = of_property_read_bool(node, "ti,ldo6-vibrator"); |
1506 | } | 1506 | } |
1507 | 1507 | ||
1508 | static struct of_device_id of_palmas_match_tbl[] = { | 1508 | static const struct of_device_id of_palmas_match_tbl[] = { |
1509 | { | 1509 | { |
1510 | .compatible = "ti,palmas-pmic", | 1510 | .compatible = "ti,palmas-pmic", |
1511 | .data = &palmas_ddata, | 1511 | .data = &palmas_ddata, |