From: Camelia Groza Date: Tue, 11 Jul 2023 12:49:29 +0000 (+0300) Subject: board: freescale: t102xrdb: enumerate PCI devices X-Git-Tag: v2023.10-rc1~17^2~4 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f416f33ece8b090e95f358e4ed2e2fdf2d6fb24d;p=pandora-u-boot.git board: freescale: t102xrdb: 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/t102xrdb/t102xrdb.c b/board/freescale/t102xrdb/t102xrdb.c index baa59615b3e..ffc4c1122d8 100644 --- a/board/freescale/t102xrdb/t102xrdb.c +++ b/board/freescale/t102xrdb/t102xrdb.c @@ -159,6 +159,8 @@ int board_early_init_r(void) board_mux_lane(); #endif + pci_init(); + return 0; }