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 <init.h> 8 #include <usb.h> 9 board_early_init_r(void)10int board_early_init_r(void) 11 { 12 /* 13 * Make sure PCI bus is enumerated so that peripherals on the PCI bus 14 * can be discovered by their drivers 15 */ 16 pci_init(); 17 18 return 0; 19 } 20