]> git.sur5r.net Git - u-boot/blobdiff - board/assabet/assabet.c
Net: Clean up LAN91C96 Support
[u-boot] / board / assabet / assabet.c
index 6f02db29b80fa7e7179afd66cf35cced6d486c83..753c8d2435280531233431e7f5915b22962b5378 100644 (file)
@@ -25,6 +25,7 @@
  */
 
 #include <common.h>
+#include <netdev.h>
 #include <SA-1100.h>
 
 DECLARE_GLOBAL_DATA_PTR;
@@ -117,3 +118,14 @@ dram_init(void)
 
        return (0);
 }
+
+#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