Skip to content
Snippets Groups Projects
Commit 0e74b565 authored by Chander Kashyap's avatar Chander Kashyap Committed by Albert ARIBAUD
Browse files

SMDKV310: Fix build error for smdkv310 board


Fix build error for smdkv310 board:

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

Signed-off-by: default avatarChander Kashyap <chander.kashyap@linaro.org>
Signed-off-by: default avatarMinkyu Kang <mk7.kang@samsung.com>
parent ef5d9eb9
No related branches found
No related tags found
No related merge requests found
...@@ -123,7 +123,7 @@ int board_mmc_init(bd_t *bis) ...@@ -123,7 +123,7 @@ int board_mmc_init(bd_t *bis)
/* GPK2[0:1] pull disable */ /* GPK2[0:1] pull disable */
if (i == 0 || i == 1) { 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; continue;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment