From ca19a79342cf953bc652ce41534c86ce4e79f26a Mon Sep 17 00:00:00 2001 From: Bin Meng Date: Thu, 27 Aug 2015 22:25:57 -0700 Subject: 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 Acked-by: Joe Hershberger Acked-by: Simon Glass --- include/netdev.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'include/netdev.h') diff --git a/include/netdev.h b/include/netdev.h index 662d1735db..3d5a54f2ab 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 -- cgit v1.2.3