summaryrefslogtreecommitdiff
path: root/drivers/net/tulip/21142.c
diff options
context:
space:
mode:
authorPhilippe De Muyter <phdm@macqel.be>2005-09-22 11:09:44 +0200
committerJeff Garzik <jgarzik@pobox.com>2005-10-03 22:16:42 -0400
commit32b5bfab9a09b19ea9a7d902b249ebf311fd2999 (patch)
tree78e9032e407c10806df075f47cc791be34b31a55 /drivers/net/tulip/21142.c
parent217df670d9a4da036d68b22500ac06128811d5c8 (diff)
[PATCH] tulip DC21143 rev 48 10Mbit HDX fix
The patch below is necessary to allow my Digital DS21143 Tulip rev 48 ethernet interface to work in a 10Mbit Half Duplex network. Without it, the driver keeps retrying other modes in an endless loop. It seems like someone already had the same problem with a rev 65 board :) Signed-off-by: Philippe De Muyter <phdm@macqel.be> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers/net/tulip/21142.c')
-rw-r--r--drivers/net/tulip/21142.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/tulip/21142.c b/drivers/net/tulip/21142.c
index 5db694c4eb02..683f14b01c06 100644
--- a/drivers/net/tulip/21142.c
+++ b/drivers/net/tulip/21142.c
@@ -172,7 +172,7 @@ void t21142_lnk_change(struct net_device *dev, int csr5)
int i;
for (i = 0; i < tp->mtable->leafcount; i++)
if (tp->mtable->mleaf[i].media == dev->if_port) {
- int startup = ! ((tp->chip_id == DC21143 && tp->revision == 65));
+ int startup = ! ((tp->chip_id == DC21143 && (tp->revision == 48 || tp->revision == 65)));
tp->cur_index = i;
tulip_select_media(dev, startup);
setup_done = 1;