]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/cradle/cradle.c
ide: add configuration
[karo-tx-uboot.git] / board / cradle / cradle.c
index 6d8d55570f8eb0bb3f10b776ad18083c8c1185b5..21eb6550db67cf09c848bf680fe0fff18fbcd27f 100644 (file)
@@ -27,6 +27,7 @@
 
 #include <asm/arch/pxa-regs.h>
 #include <common.h>
+#include <netdev.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -223,3 +224,14 @@ dram_init (void)
                PHYS_SDRAM_3_SIZE +
                PHYS_SDRAM_4_SIZE );
 }
+
+#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