diff options
author | Stefan Roese <sr@denx.de> | 2007-07-16 11:51:41 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-07-16 11:51:41 +0200 |
commit | c7e8410e3c174bfde72aa548f7fe5b4e43ccc4fb (patch) | |
tree | cd81cb7a3c26d2388fbc830fc36870a0dec3dac2 /net | |
parent | 3a6cab844cf74f76639d795e0be8717e02c86af7 (diff) | |
parent | 98c80b462f9532f3ff6a62dd9629023b48627a6d (diff) |
Merge with /home/stefan/git/u-boot/u-boot-coldfire-freescale
Diffstat (limited to 'net')
-rw-r--r-- | net/eth.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/eth.c b/net/eth.c index 9fb3a10edb8..baf31f07784 100644 --- a/net/eth.c +++ b/net/eth.c @@ -58,6 +58,7 @@ extern int npe_initialize(bd_t *); extern int uec_initialize(int); extern int bfin_EMAC_initialize(bd_t *); extern int atstk1000_eth_initialize(bd_t *); +extern int mcffec_initialize(bd_t*); static struct eth_device *eth_devices, *eth_current; @@ -245,6 +246,9 @@ int eth_initialize(bd_t *bis) #if defined(CONFIG_ATSTK1000) atstk1000_eth_initialize(bis); #endif +#if defined(CONFIG_MCFFEC) + mcffec_initialize(bis); +#endif if (!eth_devices) { puts ("No ethernet found.\n"); |