commit | 1a7728f4ec52f9b40fb23492e3dced49a09ae27d | [log] [tgz] |
---|---|---|
author | Marek Vasut <marex@denx.de> | Thu Jul 09 05:36:23 2015 +0200 |
committer | Marek Vasut <marex@denx.de> | Sat Aug 08 14:14:07 2015 +0200 |
tree | d6cfedeefadaa724c25021fb49c73a2b28c7c7d2 | |
parent | 8784e7e730548431b78722603e4634181133138f [diff] |
arm: socfpga: spl: Merge spl_board_init() into board_init_f() The code in spl_board_init() should have been in board_init_f() from the beginning, since it is code which configures system and then starts DRAM. Thus, it cannot be in spl_board_init(), which is called from board_init_r() , which already expects a working DRAM. Signed-off-by: Marek Vasut <marex@denx.de>