diff options
Diffstat (limited to 'board/logicpd/zoom2/debug_board.c')
| -rw-r--r-- | board/logicpd/zoom2/debug_board.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/board/logicpd/zoom2/debug_board.c b/board/logicpd/zoom2/debug_board.c index a4ddf2929..33aa6001b 100644 --- a/board/logicpd/zoom2/debug_board.c +++ b/board/logicpd/zoom2/debug_board.c @@ -22,7 +22,7 @@  #include <asm/arch/cpu.h>  #include <asm/io.h>  #include <asm/arch/mux.h> -#include <asm/arch/gpio.h> +#include <asm/gpio.h>  #define DEBUG_BOARD_CONNECTED		1  #define DEBUG_BOARD_NOT_CONNECTED	0 @@ -33,14 +33,14 @@ static void zoom2_debug_board_detect (void)  {  	int val = 0; -	if (!omap_request_gpio(158)) { +	if (!gpio_request(158, "")) {  		/*  		 * GPIO to query for debug board  		 * 158 db board query  		 */ -		omap_set_gpio_direction(158, 1); -		val = omap_get_gpio_datain(158); -		omap_free_gpio(158); +		gpio_direction_input(158); +		val = gpio_get_value(158); +		gpio_free(158);  	}  	if (!val) |