From: Camelia Groza Date: Tue, 11 Jul 2023 12:49:24 +0000 (+0300) Subject: board: freescale: t104xrdb: enumerate PCI devices X-Git-Tag: v2023.10-rc1~17^2~9 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e69a447fab3eace7a092f5695d397ffa9170177;p=pandora-u-boot.git board: freescale: t104xrdb: enumerate PCI devices Call pci_init() to force PCI enumeration at probe time. Signed-off-by: Camelia Groza Signed-off-by: Peng Fan --- diff --git a/board/freescale/t104xrdb/t104xrdb.c b/board/freescale/t104xrdb/t104xrdb.c index 8cec71217a7..562360de529 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; }