git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
531d4bb
)
arm: kirkwood: iConnect : Add PCIe late init
author
Tony Dinh
<mibodhi@gmail.com>
Sun, 2 Jan 2022 04:57:38 +0000
(20:57 -0800)
committer
Stefan Roese
<sr@denx.de>
Fri, 14 Jan 2022 06:47:57 +0000
(07:47 +0100)
- Add board_late_init function to enable pci_init
Signed-off-by: Tony Dinh <mibodhi@gmail.com>
Reviewed-by: Stefan Roese <sr@denx.de>
board/iomega/iconnect/iconnect.c
patch
|
blob
|
history
diff --git
a/board/iomega/iconnect/iconnect.c
b/board/iomega/iconnect/iconnect.c
index
fe4be28
..
9e123aa
100644
(file)
--- 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;
+}