diff options
author | Guenter Roeck <linux@roeck-us.net> | 2012-01-20 18:43:54 +0100 |
---|---|---|
committer | Guenter Roeck <guenter.roeck@ericsson.com> | 2012-03-19 02:27:00 +0100 |
commit | a68abd32b911f9d3d0370c3992a770d4ea62496b (patch) | |
tree | 2e94c35fdc66e81d86364055d56d48ffb3fc57d4 /drivers/hwmon/wm8350-hwmon.c | |
parent | hwmon: (applesmc) Fix multi-line comments (diff) | |
download | linux-a68abd32b911f9d3d0370c3992a770d4ea62496b.tar.xz linux-a68abd32b911f9d3d0370c3992a770d4ea62496b.zip |
hwmon: (wm8350-hwmon) Constify fixed string array
Constify fixed string array and make checkpatch happy.
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/hwmon/wm8350-hwmon.c')
-rw-r--r-- | drivers/hwmon/wm8350-hwmon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/wm8350-hwmon.c b/drivers/hwmon/wm8350-hwmon.c index 3ff67edbdc44..b955756bdb42 100644 --- a/drivers/hwmon/wm8350-hwmon.c +++ b/drivers/hwmon/wm8350-hwmon.c @@ -34,7 +34,7 @@ static ssize_t show_name(struct device *dev, return sprintf(buf, "wm8350\n"); } -static const char *input_names[] = { +static const char * const input_names[] = { [WM8350_AUXADC_USB] = "USB", [WM8350_AUXADC_LINE] = "Line", [WM8350_AUXADC_BATT] = "Battery", |