]> git.sur5r.net Git - u-boot/blobdiff - board/logicpd/zoom2/debug_board.c
imx: mx53ard: Convert to iomux-v3
[u-boot] / board / logicpd / zoom2 / debug_board.c
index a4ddf29294b20e99d1fd33b9dae83bbba67a5884..071e7f98e2238c1c721a6b194eae8ee20da2502d 100644 (file)
@@ -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,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)