diff options
author | Bin Meng | 2015-08-27 22:25:57 -0700 |
---|---|---|
committer | Simon Glass | 2015-09-09 07:48:03 -0600 |
commit | ca19a79342cf953bc652ce41534c86ce4e79f26a (patch) | |
tree | d7739908b02a3973ce7010ff51a6c564c367c4f3 /include/netdev.h | |
parent | 868767c71a375a07a44cc4fd49d67a4e2b1b9e8b (diff) |
net: pch_gbe: Convert to driver model
This commit converts pch_gbe ethernet driver to driver model.
Since this driver is only used by Intel Crown Bay board, the
conversion does not keep the non-dm version.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/netdev.h')
-rw-r--r-- | include/netdev.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/netdev.h b/include/netdev.h index 662d1735db0..3d5a54f2aba 100644 --- a/include/netdev.h +++ b/include/netdev.h @@ -70,7 +70,6 @@ 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,9 +122,6 @@ 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 |