]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - board/atmel/atstk1000/atstk1000.c
Merge branch 'eth-cleanup' of git://git.denx.de/u-boot-avr32
[people/ms/u-boot.git] / board / atmel / atstk1000 / atstk1000.c
index d284fc1438adb9531d1c28222252ef905176d30d..915b1c35393a706c6e1f1bf7ee7e426b8088b9cb 100644 (file)
@@ -115,3 +115,14 @@ void board_init_info(void)
        gd->bd->bi_phy_id[0] = 0x10;
        gd->bd->bi_phy_id[1] = 0x11;
 }
+
+extern int macb_eth_initialize(int id, void *regs, unsigned int phy_addr);
+
+#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