From: Stephen Warren Date: Thu, 5 Jan 2012 20:36:27 +0000 (+0100) Subject: ARM: 7271/1: Fix typo in conversion of ARCH_NR_GPIOS to Kconfig X-Git-Tag: upstream/snapshot3+hdmi~8308^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ca95023e7521729d3ace6fb3b9c53281c510a18c;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git ARM: 7271/1: Fix typo in conversion of ARCH_NR_GPIOS to Kconfig 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 Signed-off-by: Russell King --- diff --git a/arch/arm/include/asm/gpio.h b/arch/arm/include/asm/gpio.h index 7151753..c402e9b 100644 --- a/arch/arm/include/asm/gpio.h +++ b/arch/arm/include/asm/gpio.h @@ -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 ... */