
24 Feb
2015
24 Feb
'15
5:54 p.m.
Use gpio_direction_output instead of gpio_set_value since the latter does not set output GPIO direction.
Signed-off-by: Valentine Barshak valentine.barshak+renesas@cogentembedded.com Signed-off-by: Vladimir Barinov vladimir.barinov+renesas@cogentembedded.com --- board/renesas/silk/silk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/renesas/silk/silk.c b/board/renesas/silk/silk.c index 8fb729a..e124010 100644 --- a/board/renesas/silk/silk.c +++ b/board/renesas/silk/silk.c @@ -136,7 +136,7 @@ int board_mmc_init(bd_t *bis) #ifdef CONFIG_SH_MMCIF /* MMC0 */ gpio_request(GPIO_GP_4_31, NULL); - gpio_set_value(GPIO_GP_4_31, 1); + gpio_direction_output(GPIO_GP_4_31, 1);
ret = mmcif_mmc_init(); #endif
--
1.9.1