diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-03-18 12:58:47 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2015-03-19 15:16:18 -0400 |
commit | 245165de9896cca918701b116d72d486a0398437 (patch) | |
tree | fecdd7a54c05adc7cc61901fd3b8cc9489c5c4f2 /drivers/input/misc | |
parent | d1b12075ffa808dce33dd46b7ad035bebf8da215 (diff) |
Input: constify of_device_id arrays
of_device_id is always used as const argument (See driver.of_match_table
and open firmware functions).
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/misc')
-rw-r--r-- | drivers/input/misc/palmas-pwrbutton.c | 2 | ||||
-rw-r--r-- | drivers/input/misc/regulator-haptic.c | 2 | ||||
-rw-r--r-- | drivers/input/misc/tps65218-pwrbutton.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/misc/palmas-pwrbutton.c b/drivers/input/misc/palmas-pwrbutton.c index 1f9b5ee92746..1e1baed63929 100644 --- a/drivers/input/misc/palmas-pwrbutton.c +++ b/drivers/input/misc/palmas-pwrbutton.c | |||
@@ -304,7 +304,7 @@ static SIMPLE_DEV_PM_OPS(palmas_pwron_pm, | |||
304 | palmas_pwron_suspend, palmas_pwron_resume); | 304 | palmas_pwron_suspend, palmas_pwron_resume); |
305 | 305 | ||
306 | #ifdef CONFIG_OF | 306 | #ifdef CONFIG_OF |
307 | static struct of_device_id of_palmas_pwr_match[] = { | 307 | static const struct of_device_id of_palmas_pwr_match[] = { |
308 | { .compatible = "ti,palmas-pwrbutton" }, | 308 | { .compatible = "ti,palmas-pwrbutton" }, |
309 | { }, | 309 | { }, |
310 | }; | 310 | }; |
diff --git a/drivers/input/misc/regulator-haptic.c b/drivers/input/misc/regulator-haptic.c index 132eb914ea3e..6bf3f1082f71 100644 --- a/drivers/input/misc/regulator-haptic.c +++ b/drivers/input/misc/regulator-haptic.c | |||
@@ -245,7 +245,7 @@ static int __maybe_unused regulator_haptic_resume(struct device *dev) | |||
245 | static SIMPLE_DEV_PM_OPS(regulator_haptic_pm_ops, | 245 | static SIMPLE_DEV_PM_OPS(regulator_haptic_pm_ops, |
246 | regulator_haptic_suspend, regulator_haptic_resume); | 246 | regulator_haptic_suspend, regulator_haptic_resume); |
247 | 247 | ||
248 | static struct of_device_id regulator_haptic_dt_match[] = { | 248 | static const struct of_device_id regulator_haptic_dt_match[] = { |
249 | { .compatible = "regulator-haptic" }, | 249 | { .compatible = "regulator-haptic" }, |
250 | { /* sentinel */ }, | 250 | { /* sentinel */ }, |
251 | }; | 251 | }; |
diff --git a/drivers/input/misc/tps65218-pwrbutton.c b/drivers/input/misc/tps65218-pwrbutton.c index 54508dec4eb3..a39b62651a4b 100644 --- a/drivers/input/misc/tps65218-pwrbutton.c +++ b/drivers/input/misc/tps65218-pwrbutton.c | |||
@@ -106,7 +106,7 @@ static int tps65218_pwron_probe(struct platform_device *pdev) | |||
106 | return 0; | 106 | return 0; |
107 | } | 107 | } |
108 | 108 | ||
109 | static struct of_device_id of_tps65218_pwr_match[] = { | 109 | static const struct of_device_id of_tps65218_pwr_match[] = { |
110 | { .compatible = "ti,tps65218-pwrbutton" }, | 110 | { .compatible = "ti,tps65218-pwrbutton" }, |
111 | { }, | 111 | { }, |
112 | }; | 112 | }; |