[PATCH] RealTek RTL-8169 Full Duplex Patch

From: Andy Gospodarek
Date: Mon Jan 30 2006 - 10:11:00 EST



Allow the r8129 driver to set devices to be full-duplex only when
auto-negotiate is disabled.

Signed-off-by: Andy Gospodarek <andy@xxxxxxxxxxxxx>
---

r8169.c | 3 +++
1 files changed, 3 insertions(+)

--- 2.6/drivers/net/r8169.c.orig 2006-01-23 12:55:19.224875000 -0600
+++ 2.6/drivers/net/r8169.c 2006-01-23 13:29:54.967655000 -0600
@@ -677,6 +677,9 @@

if (duplex == DUPLEX_HALF)
auto_nego &= ~(PHY_Cap_10_Full | PHY_Cap_100_Full);
+
+ if (duplex == DUPLEX_FULL)
+ auto_nego &= ~(PHY_Cap_10_Half | PHY_Cap_100_Half);
}

tp->phy_auto_nego_reg = auto_nego;



-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/