From: Fabio Estevam Date: Thu, 1 Jun 2017 12:14:32 +0000 (-0300) Subject: wandboard: Remove unnecessary delay X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=3320a872b04904e4b426ba476a4e7e8897fbe23b;p=bsp%2Fu-boot.git wandboard: Remove unnecessary delay There is no need to add a 100us delay after the DDR initialization. Other imx6 boards do not have such delay either, so simply remove it. Signed-off-by: Fabio Estevam --- diff --git a/board/wandboard/spl.c b/board/wandboard/spl.c index a21a3d0f21..24c1767901 100644 --- a/board/wandboard/spl.c +++ b/board/wandboard/spl.c @@ -289,8 +289,6 @@ static void spl_dram_init(void) mx6dq_dram_iocfg(64, &mx6dq_ddr_ioregs, &mx6dq_grp_ioregs); mx6_dram_cfg(&mem_q, &mx6q_2g_mmdc_calib, &h5t04g63afr); } - - udelay(100); } void board_init_f(ulong dummy)