From bbebd5b0a55686bc81855cdb5bc55b100fda2c0a Mon Sep 17 00:00:00 2001 From: Tony Dinh Date: Sat, 1 Jan 2022 20:57:38 -0800 Subject: [PATCH] arm: kirkwood: iConnect : Add PCIe late init - Add board_late_init function to enable pci_init Signed-off-by: Tony Dinh Reviewed-by: Stefan Roese --- board/iomega/iconnect/iconnect.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/board/iomega/iconnect/iconnect.c b/board/iomega/iconnect/iconnect.c index fe4be28..9e123aa 100644 --- a/board/iomega/iconnect/iconnect.c +++ b/board/iomega/iconnect/iconnect.c @@ -92,3 +92,10 @@ int board_init(void) return 0; } + +int board_late_init(void) +{ + /* Do late init to ensure successful enumeration of PCIe devices */ + pci_init(); + return 0; +} -- 2.7.4