diff options
author | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2006-12-17 17:14:30 +0100 |
---|---|---|
committer | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2007-04-14 16:14:06 +0200 |
commit | 9a24f477a1ed5bb0f74377c985d754ebbfa44872 (patch) | |
tree | 99eb535c6f23f5d362c839cebb35f60c09168f62 /net | |
parent | 5c1fe1ffffd1750a7e47e5a2e2cd600c00e4f009 (diff) | |
download | u-boot-9a24f477a1ed5bb0f74377c985d754ebbfa44872.zip u-boot-9a24f477a1ed5bb0f74377c985d754ebbfa44872.tar.gz u-boot-9a24f477a1ed5bb0f74377c985d754ebbfa44872.tar.bz2 |
AVR32: Enable networking
Implement MACB initialization for AVR32 and ATSTK1000, and turn
everything on, including the MACB driver.
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Diffstat (limited to 'net')
-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"); |