diff options
author | Sanjeev Premi <premi@ti.com> | 2011-09-08 10:51:01 -0400 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-09-13 08:25:15 +0200 |
commit | 84c3b6312997de6f98114263159c8b9824f3d33d (patch) | |
tree | 943f816f64d66cd956b5ece9b6198b78b7c2c5e9 /board/logicpd/zoom2/zoom2.c | |
parent | 3b690ebbbf21303a3bac1f62d967c36cd8655ce0 (diff) | |
download | u-boot-imx-84c3b6312997de6f98114263159c8b9824f3d33d.zip u-boot-imx-84c3b6312997de6f98114263159c8b9824f3d33d.tar.gz u-boot-imx-84c3b6312997de6f98114263159c8b9824f3d33d.tar.bz2 |
omap: gpio: Adapt board files to use generic API
This patch contains updates the sources in the board files
to use the generic API.
Signed-off-by: Sanjeev Premi <premi@ti.com>
Diffstat (limited to 'board/logicpd/zoom2/zoom2.c')
-rw-r--r-- | board/logicpd/zoom2/zoom2.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/board/logicpd/zoom2/zoom2.c b/board/logicpd/zoom2/zoom2.c index 800113a..21964c2 100644 --- a/board/logicpd/zoom2/zoom2.c +++ b/board/logicpd/zoom2/zoom2.c @@ -36,7 +36,7 @@ #include <twl4030.h> #include <asm/io.h> #include <asm/arch/mmc_host_def.h> -#include <asm/arch/gpio.h> +#include <asm/gpio.h> #include <asm/arch/mem.h> #include <asm/arch/mux.h> #include <asm/arch/sys_proto.h> @@ -90,12 +90,12 @@ void zoom2_identify(void) * and they are not commonly used. They are mentioned here * only for completeness. */ - if (!omap_request_gpio(94)) { + if (!gpio_request(94, "")) { unsigned int val; - omap_set_gpio_direction(94, 1); - val = omap_get_gpio_datain(94); - omap_free_gpio(94); + gpio_direction_input(94); + val = gpio_get_value(94); + gpio_free(94); if (val) revision = ZOOM2_REVISION_BETA; |