blob: 78447965b9287a459f40c59784a996c1dc37f644 [file] [log] [blame]
Bin Meng9b911be2015-07-30 03:49:17 -07001/*
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
11void setup_pch_gpios(u16 gpiobase, const struct pch_gpio_map *gpio)
12{
13 return;
14}
15
16int board_eth_init(bd_t *bis)
17{
18 return pci_eth_init(bis);
19}