diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-03-16 15:54:36 -0400 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2015-03-16 16:00:32 -0400 |
commit | d720acace4d7989f0d5617868e8277221e882961 (patch) | |
tree | 02dda75ca610da3b71ee7587ee73619cf5de9a1b /drivers/hwmon/pwm-fan.c | |
parent | 25cdd99deb927c2753759ead21710303c499a4e0 (diff) |
hwmon: (pwm-fan, vexpress) 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: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/pwm-fan.c')
-rw-r--r-- | drivers/hwmon/pwm-fan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/pwm-fan.c b/drivers/hwmon/pwm-fan.c index 417072863ebe..31d793bd7b12 100644 --- a/drivers/hwmon/pwm-fan.c +++ b/drivers/hwmon/pwm-fan.c | |||
@@ -322,7 +322,7 @@ static int pwm_fan_resume(struct device *dev) | |||
322 | 322 | ||
323 | static SIMPLE_DEV_PM_OPS(pwm_fan_pm, pwm_fan_suspend, pwm_fan_resume); | 323 | static SIMPLE_DEV_PM_OPS(pwm_fan_pm, pwm_fan_suspend, pwm_fan_resume); |
324 | 324 | ||
325 | static struct of_device_id of_pwm_fan_match[] = { | 325 | static const struct of_device_id of_pwm_fan_match[] = { |
326 | { .compatible = "pwm-fan", }, | 326 | { .compatible = "pwm-fan", }, |
327 | {}, | 327 | {}, |
328 | }; | 328 | }; |