]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/linux/of_gpio.h
of/gpio: Implement of_gpio_count()
[linux-2.6-omap-h63xx.git] / include / linux / of_gpio.h
index e25abf610cb6073a1010e0d16f9c31017c51895d..fc2472c3c254caf90956d6850ca0381e51a5fed7 100644 (file)
@@ -65,6 +65,7 @@ static inline struct of_mm_gpio_chip *to_of_mm_gpio_chip(struct gpio_chip *gc)
 
 extern int of_get_gpio_flags(struct device_node *np, int index,
                             enum of_gpio_flags *flags);
+extern unsigned int of_gpio_count(struct device_node *np);
 
 extern int of_mm_gpiochip_add(struct device_node *np,
                              struct of_mm_gpio_chip *mm_gc);
@@ -81,6 +82,11 @@ static inline int of_get_gpio_flags(struct device_node *np, int index,
        return -ENOSYS;
 }
 
+static inline unsigned int of_gpio_count(struct device_node *np)
+{
+       return 0;
+}
+
 #endif /* CONFIG_OF_GPIO */
 
 /**