From: Paul Burton Date: Thu, 29 Jan 2015 10:38:21 +0000 (+0000) Subject: malta: delay after reset X-Git-Tag: v2015.04-rc1~6^2~7 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28c8c3d40fcc96e57d87c4a770adf7f11193bd69;p=pandora-u-boot.git malta: delay after reset Reset isn't instant, so delay to give it a chance. Otherwise we go on to print a failure message before resetting anyway. Signed-off-by: Paul Burton Cc: Daniel Schwierzeck --- diff --git a/board/imgtec/malta/malta.c b/board/imgtec/malta/malta.c index 72b03ff8cd3..79562f79a80 100644 --- a/board/imgtec/malta/malta.c +++ b/board/imgtec/malta/malta.c @@ -124,6 +124,7 @@ void _machine_restart(void) reset_base = (void __iomem *)CKSEG1ADDR(MALTA_RESET_BASE); __raw_writel(GORESET, reset_base); + mdelay(1000); } int board_early_init_f(void)