diff options
author | Roelof Berg <rberg@berg-solutions.de> | 2020-06-04 00:54:14 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-06-05 01:57:03 +0300 |
commit | 7cdee28c4eeda8242c9fdbb02e315dbf35064afe (patch) | |
tree | 0ffd33ebc976421a8325aebaf332e00f1a1c2f25 /drivers/net/ethernet/microchip | |
parent | 09820ce88b4d36c452b23e05042542f87ff122d0 (diff) | |
download | linux-7cdee28c4eeda8242c9fdbb02e315dbf35064afe.tar.xz |
lan743x: Use correct MAC_CR configuration for 1 GBit speed
Corrected the MAC_CR configuration bits for 1 GBit operation. The data
sheet allows MAC_CR(2:1) to be 10 and also 11 for 1 GBit/s speed, but
only 10 works correctly.
Devices tested:
Microchip Lan7431, fixed-phy mode
Microchip Lan7430, normal phy mode
Fixes: 6f197fb63850 ("lan743x: Added fixed link and RGMII support")
Signed-off-by: Roelof Berg <rberg@berg-solutions.de>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/microchip')
-rw-r--r-- | drivers/net/ethernet/microchip/lan743x_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/microchip/lan743x_main.c b/drivers/net/ethernet/microchip/lan743x_main.c index 36624e3c633b..c5c5c688b7e2 100644 --- a/drivers/net/ethernet/microchip/lan743x_main.c +++ b/drivers/net/ethernet/microchip/lan743x_main.c @@ -985,7 +985,7 @@ static void lan743x_phy_link_status_change(struct net_device *netdev) break; case SPEED_1000: data |= MAC_CR_CFG_H_; - data |= MAC_CR_CFG_L_; + data &= ~MAC_CR_CFG_L_; break; } lan743x_csr_write(adapter, MAC_CR, data); |