]> git.sur5r.net Git - u-boot/blob - board/efi/efi-x86_payload/payload.c
Merge branch 'master' of git://git.denx.de/u-boot-sunxi
[u-boot] / board / efi / efi-x86_payload / payload.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
4  */
5
6 #include <common.h>
7 #include <usb.h>
8
9 int board_early_init_r(void)
10 {
11         /*
12          * Make sure PCI bus is enumerated so that peripherals on the PCI bus
13          * can be discovered by their drivers
14          */
15         pci_init();
16
17         return 0;
18 }