]> git.sur5r.net Git - u-boot/blobdiff - board/atmel/atstk1000/atstk1000.c
Introduce netdev.h header file and remove externs
[u-boot] / board / atmel / atstk1000 / atstk1000.c
index d284fc1438adb9531d1c28222252ef905176d30d..94523b5a3b52f9d37e6fc1e1727e761e41342af0 100644 (file)
@@ -26,6 +26,7 @@
 #include <asm/arch/clk.h>
 #include <asm/arch/gpio.h>
 #include <asm/arch/hmatrix.h>
+#include <netdev.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -115,3 +116,12 @@ void board_init_info(void)
        gd->bd->bi_phy_id[0] = 0x10;
        gd->bd->bi_phy_id[1] = 0x11;
 }
+
+#ifdef CONFIG_CMD_NET
+int board_eth_init(bd_t *bi)
+{
+       macb_eth_initialize(0, (void *)MACB0_BASE, bi->bi_phy_id[0]);
+       macb_eth_initialize(1, (void *)MACB1_BASE, bi->bi_phy_id[1]);
+       return 0;
+}
+#endif