Bin Meng | 0ee88bd | 2018-06-17 05:57:52 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com> |
| 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | a7b5130 | 2019-11-14 12:57:46 -0700 | [diff] [blame^] | 7 | #include <init.h> |
Bin Meng | 0ee88bd | 2018-06-17 05:57:52 -0700 | [diff] [blame] | 8 | #include <usb.h> |
| 9 | |
| 10 | int 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 | } |