From 63f3491242df8e6bd1b5df7296f28959989e2eaf Mon Sep 17 00:00:00 2001 From: wdenk Date: Fri, 2 Jan 2004 15:01:32 +0000 Subject: =?UTF-8?q?*=20Patch=20by=20Andr=E9=20Schwarz,=208=20Dec=202003:?= =?UTF-8?q?=20=20=20fixes=20for=20Davicom=20DM9102A=20Ethernet=20Chip=20(#?= =?UTF-8?q?define=20CONFIG=5FTULIP=5FFIX=5FDAVICOM):=20=20=20-=20TX=20and?= =?UTF-8?q?=20RX=20deskriptors=20must=20be=20quad-word=20aligned=20=20=20-?= =?UTF-8?q?=20does=20not=20work=20with=20only=20one=20TX=20deskriptor=20?= =?UTF-8?q?=20=20-=20standard=20reset=20method=20does=20not=20work?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 --- net/eth.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'net') diff --git a/net/eth.c b/net/eth.c index f295782e8a..e60098f5d0 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"); -- cgit v1.2.3