arm: kirkwood: iConnect : Add PCIe late init

- Add board_late_init function to enable pci_init

Signed-off-by: Tony Dinh <mibodhi@gmail.com>
Reviewed-by: Stefan Roese <sr@denx.de>
This commit is contained in:
Tony Dinh 2022-01-01 20:57:38 -08:00 committed by Stefan Roese
parent 531d4bb04e
commit bbebd5b0a5

View File

@ -92,3 +92,10 @@ int board_init(void)
return 0;
}
int board_late_init(void)
{
/* Do late init to ensure successful enumeration of PCIe devices */
pci_init();
return 0;
}