diff options
author | Marek BehĂșn <marek.behun@nic.cz> | 2019-05-24 14:57:53 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2019-07-11 10:58:02 +0200 |
commit | 02aa5af92273a9e6a043923c4cf0c73dd5737558 (patch) | |
tree | ac7637b13ad5811147d4ff63e840bb7c72a17809 /board/CZ.NIC | |
parent | 27e3d4846d8f5b81091365427279f95dec83b79e (diff) | |
download | u-boot-02aa5af92273a9e6a043923c4cf0c73dd5737558.tar.gz u-boot-02aa5af92273a9e6a043923c4cf0c73dd5737558.tar.bz2 u-boot-02aa5af92273a9e6a043923c4cf0c73dd5737558.zip |
arm: mvebu: turris_omnia: call pci_init from board init code
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>
Diffstat (limited to 'board/CZ.NIC')
-rw-r--r-- | board/CZ.NIC/turris_omnia/turris_omnia.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/CZ.NIC/turris_omnia/turris_omnia.c b/board/CZ.NIC/turris_omnia/turris_omnia.c index cddde50b96..eee150892a 100644 --- 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; } |