diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2009-05-26 07:34:07 (GMT) |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2009-06-15 07:13:54 (GMT) |
commit | 8453587ef9137daf98b7c9cf4f3b865f4039cea0 (patch) | |
tree | 3947d95a62295a86c7f43ad65574675544a28218 /net | |
parent | 8cc13c13f1d154c8fa8fff56cea357ed38af76bf (diff) | |
download | u-boot-8453587ef9137daf98b7c9cf4f3b865f4039cea0.tar.xz |
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 'net')
-rw-r--r-- | net/eth.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -504,7 +504,6 @@ extern int at91rm9200_miiphy_initialize(bd_t *bis); extern int emac4xx_miiphy_initialize(bd_t *bis); extern int mcf52x2_miiphy_initialize(bd_t *bis); extern int ns7520_miiphy_initialize(bd_t *bis); -extern int davinci_eth_miiphy_initialize(bd_t *bis); int eth_initialize(bd_t *bis) @@ -525,9 +524,6 @@ int eth_initialize(bd_t *bis) #if defined(CONFIG_DRIVER_NS7520_ETHERNET) ns7520_miiphy_initialize(bis); #endif -#if defined(CONFIG_DRIVER_TI_EMAC) - davinci_eth_miiphy_initialize(bis); -#endif return 0; } #endif |