]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
hwmon: (it87) Constify fixed string arrays
authorGuenter Roeck <linux@roeck-us.net>
Fri, 20 Jan 2012 17:29:44 +0000 (09:29 -0800)
committerGuenter Roeck <guenter.roeck@ericsson.com>
Mon, 19 Mar 2012 01:26:58 +0000 (18:26 -0700)
Make checkpatch happy by constifying fixed string arrays.

Cc: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Jean Delvare <khali@linux-fr.org>
drivers/hwmon/it87.c

index 93a197bd315acc579ba0cd2a61dd52f96372cd04..0b204e4cf51c5303836c9254d64f808fd8364115 100644 (file)
@@ -1341,12 +1341,12 @@ static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
 static ssize_t show_label(struct device *dev, struct device_attribute *attr,
                char *buf)
 {
-       static const char *labels[] = {
+       static const char * const labels[] = {
                "+5V",
                "5VSB",
                "Vbat",
        };
-       static const char *labels_it8721[] = {
+       static const char * const labels_it8721[] = {
                "+3.3V",
                "3VSB",
                "Vbat",
@@ -1815,7 +1815,7 @@ static int __devinit it87_probe(struct platform_device *pdev)
        int err = 0, i;
        int enable_pwm_interface;
        int fan_beep_need_rw;
-       static const char *names[] = {
+       static const char * const names[] = {
                "it87",
                "it8712",
                "it8716",