aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Bolle <pebolle@tiscali.nl>2014-09-05 07:09:25 -0400
committerJiri Kosina <jkosina@suse.cz>2014-09-05 07:54:41 -0400
commit7d75a871888e3f5e1a7c99bf240d1cd67d8bdfa0 (patch)
tree2a829c5622fce99846c8581a67f0ff75820b31d6
parent83ee73c1795d867f20525a53ea60e55c7b59a373 (diff)
gpio: fix 'CONFIG_GPIO_IRQCHIP' comments
These two typos were introduced in commit 1425052097b5 ("gpio: add IRQ chip helpers in gpiolib"). The correct symbol name is CONFIG_GPIOLIB_IRQCHIP. [jkosina@suse.cz: add changelog] Signed-off-by: Paul Bolle <pebolle@tiscali.nl> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r--include/linux/gpio/driver.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/gpio/driver.h b/include/linux/gpio/driver.h
index 573e4f3243d0..4fcd60913a42 100644
--- a/include/linux/gpio/driver.h
+++ b/include/linux/gpio/driver.h
@@ -105,7 +105,7 @@ struct gpio_chip {
105 105
106#ifdef CONFIG_GPIOLIB_IRQCHIP 106#ifdef CONFIG_GPIOLIB_IRQCHIP
107 /* 107 /*
108 * With CONFIG_GPIO_IRQCHIP we get an irqchip inside the gpiolib 108 * With CONFIG_GPIOLIB_IRQCHIP we get an irqchip inside the gpiolib
109 * to handle IRQs for most practical cases. 109 * to handle IRQs for most practical cases.
110 */ 110 */
111 struct irq_chip *irqchip; 111 struct irq_chip *irqchip;
@@ -221,7 +221,7 @@ int gpiochip_irqchip_add(struct gpio_chip *gpiochip,
221 irq_flow_handler_t handler, 221 irq_flow_handler_t handler,
222 unsigned int type); 222 unsigned int type);
223 223
224#endif /* CONFIG_GPIO_IRQCHIP */ 224#endif /* CONFIG_GPIOLIB_IRQCHIP */
225 225
226#else /* CONFIG_GPIOLIB */ 226#else /* CONFIG_GPIOLIB */
227 227