diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2008-10-22 23:20:29 -0700 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-11-09 21:38:02 -0800 |
commit | 3456a148276d5494b53ee40242efb6462d163504 (patch) | |
tree | 08495259e439a064f442318155596a13c68f4011 /cpu/mpc85xx/cpu.c | |
parent | 62e15b497f5c6334c059512678c8db7940ae4c61 (diff) | |
download | u-boot-imx-3456a148276d5494b53ee40242efb6462d163504.zip u-boot-imx-3456a148276d5494b53ee40242efb6462d163504.tar.gz u-boot-imx-3456a148276d5494b53ee40242efb6462d163504.tar.bz2 |
Moved initialization of FCC Ethernet controller to cpu_eth_init
Affected boards:
Several MPC8xx boards
Several MPC8260/MPC8272 boards
Several MPC85xx boards
Removed initialization of the driver from net/eth.c
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'cpu/mpc85xx/cpu.c')
-rw-r--r-- | cpu/mpc85xx/cpu.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpu/mpc85xx/cpu.c b/cpu/mpc85xx/cpu.c index b90871d..fc6bd2d 100644 --- a/cpu/mpc85xx/cpu.c +++ b/cpu/mpc85xx/cpu.c @@ -30,6 +30,7 @@ #include <watchdog.h> #include <command.h> #include <tsec.h> +#include <netdev.h> #include <asm/cache.h> #include <asm/io.h> @@ -383,9 +384,11 @@ void upmconfig (uint upm, uint * table, uint size) */ int cpu_eth_init(bd_t *bis) { +#if defined(CONFIG_ETHER_ON_FCC) + fec_initialize(bis); +#endif #if defined(CONFIG_TSEC_ENET) || defined(CONFIG_MPC85XX_FEC) tsec_standard_init(bis); #endif - return 0; } |