X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=board%2Flogicpd%2Fzoom2%2Fdebug_board.c;h=071e7f98e2238c1c721a6b194eae8ee20da2502d;hb=5053b593009a0b5645f32c9b7365c587138e1afd;hp=a4ddf29294b20e99d1fd33b9dae83bbba67a5884;hpb=350f3ac5731faf0f02ca55ab016694b7c7269f97;p=u-boot diff --git a/board/logicpd/zoom2/debug_board.c b/board/logicpd/zoom2/debug_board.c index a4ddf29294..071e7f98e2 100644 --- a/board/logicpd/zoom2/debug_board.c +++ b/board/logicpd/zoom2/debug_board.c @@ -22,7 +22,7 @@ #include #include #include -#include +#include #define DEBUG_BOARD_CONNECTED 1 #define DEBUG_BOARD_NOT_CONNECTED 0 @@ -33,14 +33,13 @@ 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); } if (!val)