From 6653c39fc53350d21b3477573926da6969d034de Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Thu, 5 Feb 2015 20:25:33 +0100 Subject: [PATCH] sysmobts: Add a huge sleep to wait for the pin to be driven Add some margin and wait for the pin to get high and such. I can't easily measure if we sleep at all or if it is really 100ms but it can't hurt and we don't optimize for boot times yet. --- board/davinci/sysmobts_v2/sysmobts_v2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/board/davinci/sysmobts_v2/sysmobts_v2.c b/board/davinci/sysmobts_v2/sysmobts_v2.c index f3faf58b1d..2c65cca005 100644 --- a/board/davinci/sysmobts_v2/sysmobts_v2.c +++ b/board/davinci/sysmobts_v2/sysmobts_v2.c @@ -175,5 +175,6 @@ void hw_nand_rem_nwp(void) { if (get_board_revision() == 5) { gpio_direction_output(33, 1); + udelay(100); } }