public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] gpio: omap_gpio: Fix valid gpio range for AM33XX
@ 2013-06-20 15:26 Axel Lin
  2013-06-20 15:35 ` Tom Rini
  2013-06-20 15:47 ` Stefan Roese
  0 siblings, 2 replies; 4+ messages in thread
From: Axel Lin @ 2013-06-20 15:26 UTC (permalink / raw)
  To: u-boot

AM33XX has 4 gpio banks, thus the valid gpio range should be 0 ... 127.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
 drivers/gpio/omap_gpio.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/gpio/omap_gpio.c b/drivers/gpio/omap_gpio.c
index a30d7f0..9aa6d41 100644
--- a/drivers/gpio/omap_gpio.c
+++ b/drivers/gpio/omap_gpio.c
@@ -55,7 +55,11 @@ static inline int get_gpio_index(int gpio)
 
 int gpio_is_valid(int gpio)
 {
+#if defined(CONFIG_AM33XX)
+	return (gpio >= 0) && (gpio < 128);
+#else
 	return (gpio >= 0) && (gpio < 192);
+#endif
 }
 
 static int check_gpio(int gpio)
-- 
1.8.1.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-06-20 19:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-20 15:26 [U-Boot] [PATCH] gpio: omap_gpio: Fix valid gpio range for AM33XX Axel Lin
2013-06-20 15:35 ` Tom Rini
2013-06-20 15:47 ` Stefan Roese
2013-06-20 19:42   ` Marek Vasut

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox