SMDKV310: Fix build error for smdkv310 board
authorChander Kashyap <chander.kashyap@linaro.org>
Mon, 25 Jul 2011 23:04:07 +0000 (23:04 +0000)
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>
Sat, 3 Sep 2011 20:40:47 +0000 (22:40 +0200)
Fix build error for smdkv310 board:

board/samsung/smdkv310/smdkv310.c:126: undefined reference to `gpio_set_pull'

Signed-off-by: Chander Kashyap <chander.kashyap@linaro.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
board/samsung/smdkv310/smdkv310.c

index 173520e..e0b89dd 100644 (file)
@@ -123,7 +123,7 @@ int board_mmc_init(bd_t *bis)
 
                /* GPK2[0:1] pull disable */
                if (i == 0 || i == 1) {
-                       gpio_set_pull(&gpio2->k2, i, GPIO_PULL_NONE);
+                       s5p_gpio_set_pull(&gpio2->k2, i, GPIO_PULL_NONE);
                        continue;
                }