diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2009-05-26 00:34:07 -0700 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2009-06-15 00:13:54 -0700 |
commit | 8453587ef9137daf98b7c9cf4f3b865f4039cea0 (patch) | |
tree | 3947d95a62295a86c7f43ad65574675544a28218 /board/davinci/dvevm | |
parent | 8cc13c13f1d154c8fa8fff56cea357ed38af76bf (diff) | |
download | u-boot-8453587ef9137daf98b7c9cf4f3b865f4039cea0.tar.gz u-boot-8453587ef9137daf98b7c9cf4f3b865f4039cea0.tar.bz2 u-boot-8453587ef9137daf98b7c9cf4f3b865f4039cea0.zip |
Switched davinci_emac Ethernet driver to use newer API
Added CONFIG_NET_MULTI to all Davinci boards
Removed all calls to Davinci network driver from board code
Added cpu_eth_init() to cpu/arm926ejs/cpu.c
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'board/davinci/dvevm')
-rw-r--r-- | board/davinci/dvevm/dvevm.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/board/davinci/dvevm/dvevm.c b/board/davinci/dvevm/dvevm.c index 8f386331e6..98937a9620 100644 --- a/board/davinci/dvevm/dvevm.c +++ b/board/davinci/dvevm/dvevm.c @@ -73,9 +73,6 @@ int misc_init_r(void) if (dvevm_read_mac_address(eeprom_enetaddr)) dv_configure_mac_address(eeprom_enetaddr); - if (!eth_hw_init()) - printf("ethernet init failed!\n"); - i2c_read(0x39, 0x00, 1, &video_mode, 1); setenv("videostd", ((video_mode & 0x80) ? "pal" : "ntsc")); |