diff options
Diffstat (limited to 'net/eth.c')
| -rw-r--r-- | net/eth.c | 7 | 
1 files changed, 7 insertions, 0 deletions
| @@ -54,6 +54,7 @@ extern int scc_initialize(bd_t*);  extern int skge_initialize(bd_t*);  extern int tsec_initialize(bd_t*, int, char *);  extern int npe_initialize(bd_t *); +extern int uec_initialize(int);  static struct eth_device *eth_devices, *eth_current; @@ -193,6 +194,12 @@ int eth_initialize(bd_t *bis)  	tsec_initialize(bis, 3, CONFIG_MPC83XX_TSEC4_NAME);  #    endif  #endif +#if defined(CONFIG_UEC_ETH1) +	uec_initialize(0); +#endif +#if defined(CONFIG_UEC_ETH2) +	uec_initialize(1); +#endif  #if defined(CONFIG_MPC86XX_TSEC1)         tsec_initialize(bis, 0, CONFIG_MPC86XX_TSEC1_NAME);  #endif |