board: freescale: t2080rdb: enumerate PCI devices
authorCamelia Groza <camelia.groza@nxp.com>
Tue, 11 Jul 2023 12:49:14 +0000 (15:49 +0300)
committerPeng Fan <peng.fan@nxp.com>
Thu, 13 Jul 2023 08:54:12 +0000 (16:54 +0800)
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>
board/freescale/t208xrdb/t208xrdb.c

index 04cb313..13a2d3d 100644 (file)
@@ -1,7 +1,7 @@
 // SPDX-License-Identifier: GPL-2.0+
 /*
  * Copyright 2009-2013 Freescale Semiconductor, Inc.
- * Copyright 2021 NXP
+ * Copyright 2021-2023 NXP
  */
 
 #include <common.h>
@@ -106,6 +106,9 @@ int board_early_init_r(void)
         */
        if (adjust_vdd(0))
                printf("Warning: Adjusting core voltage failed.\n");
+
+       pci_init();
+
        return 0;
 }