projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
60c0467
)
arm: rmobile: silk: Fix GPIO4_31 initialization
author
Vladimir Barinov
<
[email protected]
>
Tue, 24 Feb 2015 16:54:18 +0000
(18:54 +0200)
committer
Nobuhiro Iwamatsu
<
[email protected]
>
Wed, 25 Feb 2015 05:18:41 +0000
(14:18 +0900)
Use gpio_direction_output instead of gpio_set_value
since the latter does not set output GPIO direction.
Signed-off-by: Valentine Barshak <
[email protected]
>
Signed-off-by: Vladimir Barinov <
[email protected]
>
Signed-off-by: Nobuhiro Iwamatsu <
[email protected]
>
board/renesas/silk/silk.c
patch
|
blob
|
history
diff --git
a/board/renesas/silk/silk.c
b/board/renesas/silk/silk.c
index 8fb729aec5a01f16e0054cb30ba42c2d5fd1659f..e12401053f84c9bc686321d2045d8826d1105184 100644
(file)
--- 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