
11 Jul
2023
11 Jul
'23
2:49 p.m.
Call pci_init() to force PCI enumeration at probe time.
Signed-off-by: Camelia Groza camelia.groza@nxp.com --- board/freescale/t104xrdb/t104xrdb.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/board/freescale/t104xrdb/t104xrdb.c b/board/freescale/t104xrdb/t104xrdb.c index 8cec71217a72..562360de5291 100644 --- a/board/freescale/t104xrdb/t104xrdb.c +++ b/board/freescale/t104xrdb/t104xrdb.c @@ -88,6 +88,9 @@ int board_early_init_r(void) MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, 0, flash_esel, BOOKE_PAGESZ_256M, 1); #endif + + pci_init(); + return 0; }
--
2.17.1