payload.c 331 B

12345678910111213141516171819
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
  4. */
  5. #include <common.h>
  6. #include <init.h>
  7. #include <usb.h>
  8. int board_early_init_r(void)
  9. {
  10. /*
  11. * Make sure PCI bus is enumerated so that peripherals on the PCI bus
  12. * can be discovered by their drivers
  13. */
  14. pci_init();
  15. return 0;
  16. }