hwmon: (gpio-fan) Make of_device_id array const
authorJingoo Han <jg1.han@samsung.com>
Wed, 7 May 2014 08:27:54 +0000 (17:27 +0900)
committerGuenter Roeck <linux@roeck-us.net>
Wed, 21 May 2014 23:02:23 +0000 (16:02 -0700)
Make of_device_id array const, because all OF functions
handle it as const.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/gpio-fan.c

index 73181be5b30b806a875f497097f120795db5309c..ba35e4d530b57c4e30ff898f4394e8d548cd6572 100644 (file)
@@ -482,7 +482,7 @@ static int gpio_fan_get_of_pdata(struct device *dev,
        return 0;
 }
 
-static struct of_device_id of_gpio_fan_match[] = {
+static const struct of_device_id of_gpio_fan_match[] = {
        { .compatible = "gpio-fan", },
        {},
 };