diff options
Diffstat (limited to 'net/eth.c')
| -rw-r--r-- | net/eth.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| @@ -55,6 +55,7 @@ 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); +extern int atstk1000_eth_initialize(bd_t *);  static struct eth_device *eth_devices, *eth_current; @@ -255,6 +256,9 @@ int eth_initialize(bd_t *bis)  #if defined(CONFIG_RTL8169)  	rtl8169_initialize(bis);  #endif +#if defined(CONFIG_ATSTK1000) +	atstk1000_eth_initialize(bis); +#endif  	if (!eth_devices) {  		puts ("No ethernet found.\n"); |