diff options
author | wdenk <wdenk> | 2004-01-02 15:01:32 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-01-02 15:01:32 +0000 |
commit | 63f3491242df8e6bd1b5df7296f28959989e2eaf (patch) | |
tree | 7af4bc5c75cdc9ee45cc4c7c6e144a79845b6ae6 /net | |
parent | d4ca31c40e8888b36635967522ec7ea03fd7e70b (diff) |
* 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
Diffstat (limited to 'net')
-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 f295782e8ae..e60098f5d04 100644 --- a/net/eth.c +++ b/net/eth.c @@ -47,6 +47,7 @@ extern int mpc5xxx_fec_initialize(bd_t*); 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 @@ int eth_initialize(bd_t *bis) #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"); |