qemu-x86.c 203 B

12345678910111213
  1. /*
  2. * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include <netdev.h>
  8. int board_eth_init(bd_t *bis)
  9. {
  10. return pci_eth_init(bis);
  11. }