diff options
| author | Tom Rini <trini@konsulko.com> | 2015-03-26 22:13:11 -0400 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2015-03-26 22:13:11 -0400 |
| commit | 10af87817a3d924bfbfce0cc323f9785cccdb131 (patch) | |
| tree | 2ca16e5060d3e6b968cfed645d0713bf5ab7734a /include/netdev.h | |
| parent | f643d9294f45487f22e8f33d6572530f17eff4e9 (diff) | |
| parent | 6f1eba49a558421e3fcb06ab0addc12b9a3804c6 (diff) | |
Merge branch 'master' of git://git.denx.de/u-boot-x86
Diffstat (limited to 'include/netdev.h')
| -rw-r--r-- | include/netdev.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/netdev.h b/include/netdev.h index 90140bd9bb..c69533e9aa 100644 --- a/include/netdev.h +++ b/include/netdev.h @@ -69,6 +69,7 @@ int natsemi_initialize(bd_t *bis); int ne2k_register(void); int npe_initialize(bd_t *bis); int ns8382x_initialize(bd_t *bis); +int pch_gbe_register(bd_t *bis); int pcnet_initialize(bd_t *bis); int ppc_4xx_eth_initialize (bd_t *bis); int rtl8139_initialize(bd_t *bis); @@ -123,6 +124,9 @@ static inline int pci_eth_init(bd_t *bis) #ifdef CONFIG_E1000 num += e1000_initialize(bis); #endif +#ifdef CONFIG_PCH_GBE + num += pch_gbe_register(bis); +#endif #ifdef CONFIG_PCNET num += pcnet_initialize(bis); #endif |
