diff options
Diffstat (limited to 'net/eth.c')
-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 53798ac0696..0607d028ae0 100644 --- a/net/eth.c +++ b/net/eth.c @@ -44,6 +44,7 @@ extern int inca_switch_initialize(bd_t*); extern int ppc_4xx_eth_initialize(bd_t *); extern int plb2800_eth_initialize(bd_t*); extern int mpc5xxx_fec_initialize(bd_t*); +extern int skge_initialize(bd_t*); static struct eth_device *eth_devices, *eth_current; @@ -142,6 +143,9 @@ int eth_initialize(bd_t *bis) #if defined(CONFIG_MPC5XXX_FEC) mpc5xxx_fec_initialize(bis); #endif +#if defined(CONFIG_SK98) + skge_initialize(bis); +#endif if (!eth_devices) { puts ("No ethernet found.\n"); |