mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-25 00:21:33 +00:00
run arm_pci_init after relocation
Signed-off-by: Michael Schwingen <michael@schwingen.org>
This commit is contained in:
parent
29161f47d0
commit
1ed63c5498
1 changed files with 3 additions and 3 deletions
|
@ -262,9 +262,6 @@ init_fnc_t *init_sequence[] = {
|
|||
init_func_i2c,
|
||||
#endif
|
||||
dram_init, /* configure available RAM banks */
|
||||
#if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
|
||||
arm_pci_init,
|
||||
#endif
|
||||
NULL,
|
||||
};
|
||||
|
||||
|
@ -533,6 +530,9 @@ void board_init_r (gd_t *id, ulong dest_addr)
|
|||
/* initialize environment */
|
||||
env_relocate ();
|
||||
|
||||
#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
|
||||
arm_pci_init();
|
||||
#endif
|
||||
#ifdef CONFIG_VFD
|
||||
/* must do this after the framebuffer is allocated */
|
||||
drv_vfd_init();
|
||||
|
|
Loading…
Add table
Reference in a new issue