aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s3c2410/include/mach/gpio.h
diff options
context:
space:
mode:
authorVasily Khoruzhick <anarsoul@gmail.com>2010-05-12 10:22:41 +0300
committerBen Dooks <ben-linux@fluff.org>2010-05-18 19:06:15 +0900
commita0026418d3d99b68dbd6c91f277d6f764fe41956 (patch)
tree1c50b1fb2e4838f57b8a611508a453873a9d3186 /arch/arm/mach-s3c2410/include/mach/gpio.h
parentfcef85c0c122f90f57f2f3ef0caeaf6404d6e8f3 (diff)
downloadkernel_samsung_smdk4412-a0026418d3d99b68dbd6c91f277d6f764fe41956.zip
kernel_samsung_smdk4412-a0026418d3d99b68dbd6c91f277d6f764fe41956.tar.gz
kernel_samsung_smdk4412-a0026418d3d99b68dbd6c91f277d6f764fe41956.tar.bz2
ARM: S3C244X: fix gpiolib port J support
Increase GPIOs number for S3C244X, and make S3C_GPIO_END point to BANKJ end, otherwise gpiolib refuses to register BANKJ Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com> [ben-linux@fluff.org: Move pm fix to new patch] Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s3c2410/include/mach/gpio.h')
-rw-r--r--arch/arm/mach-s3c2410/include/mach/gpio.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c2410/include/mach/gpio.h b/arch/arm/mach-s3c2410/include/mach/gpio.h
index 15f0b3e..b649bf2 100644
--- a/arch/arm/mach-s3c2410/include/mach/gpio.h
+++ b/arch/arm/mach-s3c2410/include/mach/gpio.h
@@ -20,10 +20,18 @@
* devices that need GPIO.
*/
+#ifdef CONFIG_CPU_S3C244X
+#define ARCH_NR_GPIOS (32 * 9 + CONFIG_S3C24XX_GPIO_EXTRA)
+#else
#define ARCH_NR_GPIOS (256 + CONFIG_S3C24XX_GPIO_EXTRA)
+#endif
#include <asm-generic/gpio.h>
#include <mach/gpio-nrs.h>
#include <mach/gpio-fns.h>
+#ifdef CONFIG_CPU_S3C24XX
+#define S3C_GPIO_END (S3C2410_GPIO_BANKJ + 32)
+#else
#define S3C_GPIO_END (S3C2410_GPIO_BANKH + 32)
+#endif