diff options
author | Camelia Groza <camelia.groza@nxp.com> | 2023-07-11 15:49:29 +0300 |
---|---|---|
committer | Peng Fan <peng.fan@nxp.com> | 2023-07-13 16:54:53 +0800 |
commit | f416f33ece8b090e95f358e4ed2e2fdf2d6fb24d (patch) | |
tree | ee77b540396a617e2f4d79d1bbe2f6f93c8b6bc3 | |
parent | e5dd02cb30ec7ff8c32367e77042e19a193ed2da (diff) |
board: freescale: t102xrdb: enumerate PCI devices
Call pci_init() to force PCI enumeration at probe time.
Signed-off-by: Camelia Groza <camelia.groza@nxp.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
-rw-r--r-- | board/freescale/t102xrdb/t102xrdb.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/freescale/t102xrdb/t102xrdb.c b/board/freescale/t102xrdb/t102xrdb.c index baa59615b3..ffc4c1122d 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; } |