diff options
author | Vikram Pandita <vikram.pandita@ti.com> | 2009-05-16 08:28:16 -0700 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2009-05-16 08:28:16 -0700 |
commit | e102657ed16bbed49820d9c58509220fc8d9289a (patch) | |
tree | 300a9b590695282fae737cd954992805dc0ceef4 /arch | |
parent | 4ea60b0c7a8487af5de736d394b147baf7691f3c (diff) |
ARM: OMAP3: Fix number of GPIO lines for 34xx
As per 3430 TRM, there are 6 banks [0 to 191]
Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
Signed-off-by: Vikram Pandita <vikram.pandita@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/plat-omap/gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-omap/gpio.c b/arch/arm/plat-omap/gpio.c index 17d7afe42b8..ee0b21f5b09 100644 --- a/arch/arm/plat-omap/gpio.c +++ b/arch/arm/plat-omap/gpio.c @@ -307,7 +307,7 @@ static inline int gpio_valid(int gpio) return 0; if (cpu_is_omap24xx() && gpio < 128) return 0; - if (cpu_is_omap34xx() && gpio < 160) + if (cpu_is_omap34xx() && gpio < 192) return 0; return -1; } |