]> git.karo-electronics.de Git - linux-beck.git/commitdiff
gpio: correctly use const char * const
authorOlliver Schinagl <oliver@schinagl.nl>
Wed, 21 Jan 2015 20:35:37 +0000 (21:35 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Thu, 29 Jan 2015 09:29:53 +0000 (10:29 +0100)
On my previous patch I was overly hasty and made the suffixes string
array
const char const *suffixes, instaed of const char * const suffixes. This
patch corrects that

Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpiolib.c

index 9d2a371998066cf1d0969d0427b2697b10a97a65..c9266410d84c11f93531ab424c0fcbfb0a115505 100644 (file)
@@ -1657,7 +1657,7 @@ static struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id,
                                      unsigned int idx,
                                      enum gpio_lookup_flags *flags)
 {
-       static const char const *suffixes[] = { "gpios", "gpio" };
+       static const char * const suffixes[] = { "gpios", "gpio" };
        char prop_name[32]; /* 32 is max size of property name */
        enum of_gpio_flags of_flags;
        struct gpio_desc *desc;