Merge branch 'master' of git://git.denx.de/u-boot-usb
[platform/kernel/u-boot.git] / board / logicpd / zoom1 / zoom1.c
index f4d3754..a144f52 100644 (file)
@@ -31,6 +31,7 @@
  * MA 02111-1307 USA
  */
 #include <common.h>
+#include <netdev.h>
 #include <twl4030.h>
 #include <asm/io.h>
 #include <asm/arch/mux.h>
@@ -86,3 +87,14 @@ void set_muxconf_regs(void)
        /* platform specific muxes */
        MUX_ZOOM1_MDK();
 }
+
+#ifdef CONFIG_CMD_NET
+int board_eth_init(bd_t *bis)
+{
+       int rc = 0;
+#ifdef CONFIG_LAN91C96
+       rc = lan91c96_initialize(0, CONFIG_LAN91C96_BASE);
+#endif
+       return rc;
+}
+#endif