projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
27e3d48
)
arm: mvebu: turris_omnia: call pci_init from board init code
author
Marek Behún
<marek.behun@nic.cz>
Fri, 24 May 2019 12:57:53 +0000
(14:57 +0200)
committer
Stefan Roese
<sr@denx.de>
Thu, 11 Jul 2019 08:58:02 +0000
(10:58 +0200)
We always want to enumerate PCIe devices, because withouth this they
won't work in Linux.
Signed-off-by: Marek Behún <marek.behun@nic.cz>
Reviewed-by: Stefan Roese <sr@denx.de>
Signed-off-by: Stefan Roese <sr@denx.de>
board/CZ.NIC/turris_omnia/turris_omnia.c
patch
|
blob
|
history
diff --git
a/board/CZ.NIC/turris_omnia/turris_omnia.c
b/board/CZ.NIC/turris_omnia/turris_omnia.c
index
cddde50
..
eee1508
100644
(file)
--- a/
board/CZ.NIC/turris_omnia/turris_omnia.c
+++ b/
board/CZ.NIC/turris_omnia/turris_omnia.c
@@
-412,6
+412,7
@@
int board_late_init(void)
set_regdomain();
handle_reset_button();
#endif
+ pci_init();
return 0;
}