diff options
author | Michel Stam <m.stam@fugro.nl> | 2014-10-02 12:22:02 +0400 |
---|---|---|
committer | Ben Hutchings <ben@decadent.org.uk> | 2015-11-17 18:54:46 +0300 |
commit | 41700e5b773b0090bec9321445dcb9e6e12d6629 (patch) | |
tree | 9bfcf68bb59796c3c313382903dbf08d1d39bdd1 | |
parent | 68c3e59aa9cdf2d8870d8fbe4f37b1a509d0abeb (diff) | |
download | linux-41700e5b773b0090bec9321445dcb9e6e12d6629.tar.xz |
asix: Don't reset PHY on if_up for ASIX 88772
[ Upstream commit 3cc81d85ee01e5a0b7ea2f4190e2ed1165f53c31 ]
I've noticed every time the interface is set to 'up,', the kernel
reports that the link speed is set to 100 Mbps/Full Duplex, even
when ethtool is used to set autonegotiation to 'off', half
duplex, 10 Mbps.
It can be tested by:
ifconfig eth0 down
ethtool -s eth0 autoneg off speed 10 duplex half
ifconfig eth0 up
Then checking 'dmesg' for the link speed.
Signed-off-by: Michel Stam <m.stam@fugro.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
[bwh: Backported to 3.2: adjust filename]
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
-rw-r--r-- | drivers/net/usb/asix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/usb/asix.c b/drivers/net/usb/asix.c index 98ab7596e2fb..ca7cdf0b5c15 100644 --- a/drivers/net/usb/asix.c +++ b/drivers/net/usb/asix.c @@ -1555,7 +1555,7 @@ static const struct driver_info ax88772_info = { .unbind = ax88772_unbind, .status = asix_status, .link_reset = ax88772_link_reset, - .reset = ax88772_reset, + .reset = ax88772_link_reset, .flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR | FLAG_MULTI_PACKET, .rx_fixup = asix_rx_fixup_common, .tx_fixup = asix_tx_fixup, |