blob: d7d1e53e911cda86bac69ee817fbd02e39cca6d2 [file] [log] [blame]
Bin Meng0ee88bd2018-06-17 05:57:52 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
4 */
5
Simon Glassa7b51302019-11-14 12:57:46 -07006#include <init.h>
Bin Meng0ee88bd2018-06-17 05:57:52 -07007#include <usb.h>
8
9int 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}