From: Sandeep Paulraj Date: Mon, 10 Aug 2009 16:24:40 +0000 (-0400) Subject: ARM: Davinci DM355: Enabling DM9000 on DM355 EVM X-Git-Tag: v2009.08-rc3~25^2~4 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b3af1d698b031e721bacaee8715d79daaf823de6;p=oweals%2Fu-boot.git ARM: Davinci DM355: Enabling DM9000 on DM355 EVM 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 Signed-off-by: Ben Warren --- diff --git a/board/davinci/dm355evm/dm355evm.c b/board/davinci/dm355evm/dm355evm.c index 398f527759..0a44748320 100644 --- a/board/davinci/dm355evm/dm355evm.c +++ b/board/davinci/dm355evm/dm355evm.c @@ -23,7 +23,8 @@ #include #include #include "../common/misc.h" - +#include +#include 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)