]> git.sur5r.net Git - u-boot/blobdiff - board/sbc2410x/sbc2410x.c
Convert CS8900 Ethernet driver to CONFIG_NET_MULTI API
[u-boot] / board / sbc2410x / sbc2410x.c
index 6c894a3869e977135ca2cb486f10d71b3cb12716..62768503ad5bb937b7dc557819bb3b41b2adf50e 100644 (file)
@@ -29,6 +29,7 @@
  */
 
 #include <common.h>
+#include <netdev.h>
 #include <s3c2410.h>
 
 #if defined(CONFIG_CMD_NAND)
@@ -178,3 +179,14 @@ void nand_init(void)
        printf ("%4lu MB\n", nand_probe((ulong)nand) >> 20);
 }
 #endif
+
+#ifdef CONFIG_CMD_NET
+int board_eth_init(bd_t *bis)
+{
+       int rc = 0;
+#ifdef CONFIG_CS8900
+       rc = cs8900_initialize(0, CONFIG_CS8900_BASE);
+#endif
+       return rc;
+}
+#endif