aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio/gpiolib.c
diff options
context:
space:
mode:
authorOlliver Schinagl <oliver@schinagl.nl>2015-01-07 04:08:39 -0500
committerLinus Walleij <linus.walleij@linaro.org>2015-01-15 11:23:22 -0500
commitb9b4d9f2b91a9f1de1b93aee0bbd0259e8b67c53 (patch)
tree987616a306bac437542c2f55d00a9a06e2239199 /drivers/gpio/gpiolib.c
parentd34541bc48eb7d7cb2ead5ff0284acf65af96f17 (diff)
gpio:gpiolib: use static const char const * for a suffixes array
Checkpatch complains, and probably with good reason that we should use const char const * for the static constant array that never gets changed. Signed-off-by: Olliver Schinagl <oliver@schinagl.nl> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpiolib.c')
-rw-r--r--drivers/gpio/gpiolib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
index 487afe6f22fc..9d2a37199806 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 *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;