* [net-next]r8169: Disable advertise full duplex on chip RTL_GIGA_MAC_VER_09. Disable advertise full duplex on chip id RTL_GIGA_MAC_VER_09 wich support random full duplex.(very sad) On branch master Your branch is ahead of 'origin/master' by 18 commits. (use "git push" to publish your local commits)
@ 2015-07-18 10:16 Corcodel Marian
0 siblings, 0 replies; only message in thread
From: Corcodel Marian @ 2015-07-18 10:16 UTC (permalink / raw)
To: netdev; +Cc: Corcodel Marian, Corcodel Marian
[-- Attachment #1: Type: text/plain, Size: 255 bytes --]
Changes to be committed:
modified: drivers/net/ethernet/realtek/r8169.c
Signed-off-by: Corcodel Marian <asu@192-168-0-3.rdsnet.ro>
---
drivers/net/ethernet/realtek/r8169.c | 19 +++++++++++++++----
1 file changed, 15 insertions(+), 4 deletions(-)
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Committer-Corcodel-Marian-corcodel.marian-gmail.com.patch --]
[-- Type: text/x-patch; name="0001-Committer-Corcodel-Marian-corcodel.marian-gmail.com.patch", Size: 1161 bytes --]
diff --git a/drivers/net/ethernet/realtek/r8169.c b/drivers/net/ethernet/realtek/r8169.c
index 714af89..a373679 100644
--- a/drivers/net/ethernet/realtek/r8169.c
+++ b/drivers/net/ethernet/realtek/r8169.c
@@ -1918,12 +1918,23 @@ static int rtl8169_set_speed_xmi(struct net_device *dev,
if (adv & ADVERTISED_10baseT_Half)
auto_nego |= ADVERTISE_10HALF;
- if (adv & ADVERTISED_10baseT_Full)
- auto_nego |= ADVERTISE_10FULL;
+ if (!tp->mac_version == RTL_GIGA_MAC_VER_09) {
+ if (adv & ADVERTISED_10baseT_Full)
+ auto_nego |= ADVERTISE_10FULL;
+ } else {
+ netif_info(tp, link, dev,
+ "PHY does not support 10Mbps full duplex\n");
+ }
if (adv & ADVERTISED_100baseT_Half)
auto_nego |= ADVERTISE_100HALF;
- if (adv & ADVERTISED_100baseT_Full)
- auto_nego |= ADVERTISE_100FULL;
+ if (!tp->mac_version == RTL_GIGA_MAC_VER_09) {
+ if (adv & ADVERTISED_100baseT_Full)
+ auto_nego |= ADVERTISE_100FULL;
+ } else {
+ netif_info(tp, link, dev,
+ "PHY does not support 100Mbps full duplex\n");
+ }
+
auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-07-18 10:17 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-18 10:16 [net-next]r8169: Disable advertise full duplex on chip RTL_GIGA_MAC_VER_09. Disable advertise full duplex on chip id RTL_GIGA_MAC_VER_09 wich support random full duplex.(very sad) On branch master Your branch is ahead of 'origin/master' by 18 commits. (use "git push" to publish your local commits) Corcodel Marian
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).