diff options
author | Joakim Tjernlund <Joakim.Tjernlund@transmode.se> | 2007-12-06 16:43:40 +0100 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2008-01-08 09:55:41 -0600 |
commit | ccf21c311e68d48399eff1e72936052885f6e3f7 (patch) | |
tree | 16faaf860b85bdb00c4481565dae455665eaac66 /net | |
parent | e6af9932d31171e35db880e7b2f29f903b1b7660 (diff) | |
download | u-boot-imx-ccf21c311e68d48399eff1e72936052885f6e3f7.zip u-boot-imx-ccf21c311e68d48399eff1e72936052885f6e3f7.tar.gz u-boot-imx-ccf21c311e68d48399eff1e72936052885f6e3f7.tar.bz2 |
Add support CONFIG_UEC_ETH3 in MPC83xx
Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
Diffstat (limited to 'net')
-rw-r--r-- | net/eth.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -214,6 +214,9 @@ int eth_initialize(bd_t *bis) #if defined(CONFIG_UEC_ETH2) uec_initialize(1); #endif +#if defined(CONFIG_UEC_ETH3) + uec_initialize(2); +#endif #if defined(FEC_ENET) || defined(CONFIG_ETHER_ON_FCC) fec_initialize(bis); |