瀏覽代碼

[Blackfin][PATCH] Add BF537 EMAC driver initialization

Aubrey Li 18 年之前
父節點
當前提交
9fd437bbd7
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      net/eth.c

+ 4 - 0
net/eth.c

@@ -55,6 +55,7 @@ extern int skge_initialize(bd_t*);
 extern int tsec_initialize(bd_t*, int, char *);
 extern int npe_initialize(bd_t *);
 extern int uec_initialize(int);
+extern int bfin_EMAC_initialize(bd_t *);
 
 static struct eth_device *eth_devices, *eth_current;
 
@@ -255,6 +256,9 @@ int eth_initialize(bd_t *bis)
 #if defined(CONFIG_RTL8169)
 	rtl8169_initialize(bis);
 #endif
+#if defined(CONFIG_BF537)
+	bfin_EMAC_initialize(bis);
+#endif
 
 	if (!eth_devices) {
 		puts ("No ethernet found.\n");