[U-Boot] [PATCH] tegra20: tamonten: Fix the early gpio init
Alban Bedel
alban.bedel at avionic-design.de
Tue Feb 24 17:58:02 CET 2015
To set gpio during the early init we now need to use
tegra_spl_gpio_direction_output(), copied from seaboard.
Signed-off-by: Alban Bedel <alban.bedel at avionic-design.de>
---
board/avionic-design/common/tamonten.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/board/avionic-design/common/tamonten.c b/board/avionic-design/common/tamonten.c
index 9c86779..ea2425a 100644
--- a/board/avionic-design/common/tamonten.c
+++ b/board/avionic-design/common/tamonten.c
@@ -23,8 +23,10 @@
#ifdef CONFIG_BOARD_EARLY_INIT_F
void gpio_early_init(void)
{
+#ifndef CONFIG_SPL_BUILD
gpio_request(GPIO_PI4, NULL);
- gpio_direction_output(GPIO_PI4, 1);
+#endif
+ tegra_spl_gpio_direction_output(GPIO_PI4, 1);
}
#endif
--
2.3.0
More information about the U-Boot
mailing list