* Patch by André Schwarz, 8 Dec 2003: fixes for Davicom DM9102A Ethernet Chip (#define CONFIG_TULIP_FIX_DAVICOM): - TX and RX deskriptors must be quad-word aligned - does not work with only one TX deskriptor - standard reset method does not work * Patch by Masami Komiya, 08 Dec 2003: add RTL8139 ethernet driver * Patches by Ed Okerson, 07 Dec 2003: - fix ethernet for the AU1x00 processors in little-endian mode. - extend memsetup.S for the AU1x00 processors in BE and LE modes
diff --git a/net/eth.c b/net/eth.c index f295782..e60098f 100644 --- a/net/eth.c +++ b/net/eth.c
@@ -47,6 +47,7 @@ extern int skge_initialize(bd_t*); extern int tsec_initialize(bd_t*); extern int au1x00_enet_initialize(bd_t*); +extern int rtl8139_initialize(bd_t*); static struct eth_device *eth_devices, *eth_current; @@ -154,6 +155,9 @@ #if defined(CONFIG_AU1X00) au1x00_enet_initialize(bis); #endif +#if defined(CONFIG_RTL8139) + rtl8139_initialize(bis); +#endif if (!eth_devices) { puts ("No ethernet found.\n");