]> git.sur5r.net Git - u-boot/blobdiff - board/xm250/xm250.c
ppc4xx: icon: add support for SM502 chip
[u-boot] / board / xm250 / xm250.c
index 56b1cd4f461b0c665c793c5cdb00c51283cee273..246bdde750271f1068dcc20ef0e70371b0371652 100644 (file)
@@ -27,6 +27,7 @@
 
 #include <asm/arch/pxa-regs.h>
 #include <common.h>
+#include <netdev.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -80,3 +81,14 @@ dram_init (void)
 
        return (0);
 }
+
+#ifdef CONFIG_CMD_NET
+int board_eth_init(bd_t *bis)
+{
+       int rc = 0;
+#ifdef CONFIG_SMC91111
+       rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
+#endif
+       return rc;
+}
+#endif