ARM: 7271/1: Fix typo in conversion of ARCH_NR_GPIOS to Kconfig
authorStephen Warren <swarren@nvidia.com>
Thu, 5 Jan 2012 20:36:27 +0000 (21:36 +0100)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Sun, 8 Jan 2012 09:27:19 +0000 (09:27 +0000)
Commit 44986ab "ARM: 7240/1: Make ARCH_NR_GPIO a Kconfig variable"
spelled ARCH_NR_GPIOS as ARCH_NR_GPIO, hence making the change
ineffective. This change fixes that.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
arch/arm/include/asm/gpio.h

index 7151753..c402e9b 100644 (file)
@@ -2,7 +2,7 @@
 #define _ARCH_ARM_GPIO_H
 
 #if CONFIG_ARCH_NR_GPIO > 0
-#define ARCH_NR_GPIO CONFIG_ARCH_NR_GPIO
+#define ARCH_NR_GPIOS CONFIG_ARCH_NR_GPIO
 #endif
 
 /* not all ARM platforms necessarily support this API ... */