platform/chrome: cros_ec_lightbar - fix duplicate const warning
authorOlof Johansson <olofj@chromium.org>
Tue, 3 Mar 2015 12:22:33 +0000 (13:22 +0100)
committerOlof Johansson <olof@lixom.net>
Wed, 4 Mar 2015 19:23:13 +0000 (11:23 -0800)
Fix the following sparse warning:

    drivers/platform/chrome/cros_ec_lightbar.c:254:25: sparse: duplicate const

Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Olof Johansson <olofj@chromium.org>
Reviewed-by: Gwendal Grignou <gwendal@chromium.org>
Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
Signed-off-by: Olof Johansson <olof@lixom.net>
drivers/platform/chrome/cros_ec_lightbar.c

index 35fc892e4c956fe1e3579bd65b8b813594b10969..b4ff47a9069ad3a8ae23468316327b215614554e 100644 (file)
@@ -251,7 +251,7 @@ static ssize_t led_rgb_store(struct device *dev, struct device_attribute *attr,
        return (ok && i == 0) ? count : -EINVAL;
 }
 
-static const char const *seqname[] = {
+static char const *seqname[] = {
        "ERROR", "S5", "S3", "S0", "S5S3", "S3S0",
        "S0S3", "S3S5", "STOP", "RUN", "PULSE", "TEST", "KONAMI",
 };