]> git.sur5r.net Git - u-boot/blobdiff - board/mpl/vcma9/vcma9.c
Convert CS8900 Ethernet driver to CONFIG_NET_MULTI API
[u-boot] / board / mpl / vcma9 / vcma9.c
index 2b3fad2513e16b8ac5e1322214072fada39219ce..3216d6347dcef378696837bc693c676197b8b5af 100644 (file)
@@ -26,6 +26,7 @@
  */
 
 #include <common.h>
+#include <netdev.h>
 #include <s3c2410.h>
 #include <stdio_dev.h>
 #include <i2c.h>
@@ -349,3 +350,14 @@ void print_vcma9_info(void)
                Show_VCMA9_Info(s, &s[6]);
        }
 }
+
+#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