]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
ARM: Davinci DM355: Enabling DM9000 on DM355 EVM
authorSandeep Paulraj <s-paulraj@ti.com>
Mon, 10 Aug 2009 16:24:40 +0000 (12:24 -0400)
committerBen Warren <biggerbadderben@gmail.com>
Mon, 10 Aug 2009 21:53:53 +0000 (14:53 -0700)
Due to recent changes to the NET support on U-boot, DM9000
is no longer detected on the DM355 EVM.
This minor update enables DM9000 on the DM355 EVM.
Tested on the DM355 EVM

Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
board/davinci/dm355evm/dm355evm.c

index 398f527759b5fd7514dbb7c24b8885d43159fa88..0a44748320f31591e44287e158bc695528e87a6e 100644 (file)
@@ -23,7 +23,8 @@
 #include <asm/arch/emif_defs.h>
 #include <asm/arch/nand_defs.h>
 #include "../common/misc.h"
-
+#include <net.h>
+#include <netdev.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -79,6 +80,13 @@ int board_init(void)
        return 0;
 }
 
+#ifdef CONFIG_DRIVER_DM9000
+int board_eth_init(bd_t *bis)
+{
+       return dm9000_initialize(bis);
+}
+#endif
+
 #ifdef CONFIG_NAND_DAVINCI
 
 static void nand_dm355evm_select_chip(struct mtd_info *mtd, int chip)