diff options
author | Olliver Schinagl <oliver@schinagl.nl> | 2015-01-21 15:35:37 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2015-01-29 04:29:53 -0500 |
commit | ef3b2bd6f3c797d6672cf2739565752019458824 (patch) | |
tree | af6be1d6fae14f850bcd1ffa71cec7ac071257a1 /drivers/gpio | |
parent | 16858cc5d9a65a0aa03b81214e234e33fbfbd64a (diff) |
gpio: correctly use const char * const
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>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpiolib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c index 9d2a37199806..c9266410d84c 100644 --- a/drivers/gpio/gpiolib.c +++ b/drivers/gpio/gpiolib.c | |||
@@ -1657,7 +1657,7 @@ static struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id, | |||
1657 | unsigned int idx, | 1657 | unsigned int idx, |
1658 | enum gpio_lookup_flags *flags) | 1658 | enum gpio_lookup_flags *flags) |
1659 | { | 1659 | { |
1660 | static const char const *suffixes[] = { "gpios", "gpio" }; | 1660 | static const char * const suffixes[] = { "gpios", "gpio" }; |
1661 | char prop_name[32]; /* 32 is max size of property name */ | 1661 | char prop_name[32]; /* 32 is max size of property name */ |
1662 | enum of_gpio_flags of_flags; | 1662 | enum of_gpio_flags of_flags; |
1663 | struct gpio_desc *desc; | 1663 | struct gpio_desc *desc; |