diff options
| author | Camelia Groza <[email protected]> | 2023-07-11 15:49:14 +0300 |
|---|---|---|
| committer | Peng Fan <[email protected]> | 2023-07-13 16:54:12 +0800 |
| commit | a85b8c75390ce03f923deabe1992db58e0052239 (patch) | |
| tree | 9a852d9634bc48e1f7f96d829db746b49c491e40 | |
| parent | bf5152d0108683bbaabf9d7a7988f61649fc33f4 (diff) | |
board: freescale: t2080rdb: enumerate PCI devices
Call pci_init() to force PCI enumeration at probe time.
Signed-off-by: Camelia Groza <[email protected]>
Signed-off-by: Peng Fan <[email protected]>
| -rw-r--r-- | board/freescale/t208xrdb/t208xrdb.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/board/freescale/t208xrdb/t208xrdb.c b/board/freescale/t208xrdb/t208xrdb.c index 04cb313e8c4..13a2d3dcde6 100644 --- a/board/freescale/t208xrdb/t208xrdb.c +++ b/board/freescale/t208xrdb/t208xrdb.c @@ -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; } |
