1 /* 2 * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com> 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #include <common.h> 8 #include <asm/gpio.h> 9 #include <netdev.h> 10 11 void setup_pch_gpios(u16 gpiobase, const struct pch_gpio_map *gpio) 12 { 13 return; 14 } 15 16 int board_eth_init(bd_t *bis) 17 { 18 return pci_eth_init(bis); 19 } 20