blob: 5d4492cdc77acc5c6c71a90a41c9ffda62f075b6 [file] [log] [blame]
Bin Meng6d02cf02018-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
6#include <common.h>
Simon Glass52559322019-11-14 12:57:46 -07007#include <init.h>
Bin Meng6d02cf02018-06-17 05:57:52 -07008#include <usb.h>
9
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}