summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Konovalov <andrey.konovalov@linaro.org>2012-07-23 20:34:17 +0400
committerAndrey Konovalov <andrey.konovalov@linaro.org>2012-07-25 19:43:51 +0400
commit50838b2bd0b19c78e278b98060e8f5695e6f36f2 (patch)
tree58900f73cb340b6e501f8b07c362ed38e0f313fa
parentd83c8bf090be900dd7a67f86c1eb13a4e111f2a1 (diff)
The bug is cased by commit 1db67fb9437eed6b909cc4a4add7a314375157b0 ([ARM] warnings in include/linux/of_gpio.h) merged into llct from the multiplatform topic. Signed-off-by: Andrey Konovalov <andrey.konovalov@linaro.org>
-rw-r--r--include/linux/of_gpio.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/of_gpio.h b/include/linux/of_gpio.h
index 18e015682276..10c2c5a38e4d 100644
--- a/include/linux/of_gpio.h
+++ b/include/linux/of_gpio.h
@@ -70,7 +70,8 @@ struct gpio_chip;
static inline int of_get_named_gpio_flags(struct device_node *np,
const char *list_name, int index, enum of_gpio_flags *flags)
{
- *flags = 0;
+ if (flags)
+ *flags = 0;
return -ENOSYS;
}