Commit ca83697c authored by Thomas Bogendoerfer's avatar Thomas Bogendoerfer Committed by David S. Miller

net: phy: lxt: Export link partner advertising

Provide link partner advertising information.
Removed testing for gigabit modes, which is useless for a fast ethernet phy.
Signed-off-by: default avatarThomas Bogendoerfer <tbogendoerfer@suse.de>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c036cab4
...@@ -152,7 +152,6 @@ static int lxt973a2_read_status(struct phy_device *phydev) ...@@ -152,7 +152,6 @@ static int lxt973a2_read_status(struct phy_device *phydev)
int adv; int adv;
int err; int err;
int lpa; int lpa;
int lpagb = 0;
/* Update the link, but return if there was an error */ /* Update the link, but return if there was an error */
err = lxt973a2_update_link(phydev); err = lxt973a2_update_link(phydev);
...@@ -178,18 +177,15 @@ static int lxt973a2_read_status(struct phy_device *phydev) ...@@ -178,18 +177,15 @@ static int lxt973a2_read_status(struct phy_device *phydev)
*/ */
} while (lpa == adv && retry--); } while (lpa == adv && retry--);
phydev->lp_advertising = mii_lpa_to_ethtool_lpa_t(lpa);
lpa &= adv; lpa &= adv;
phydev->speed = SPEED_10; phydev->speed = SPEED_10;
phydev->duplex = DUPLEX_HALF; phydev->duplex = DUPLEX_HALF;
phydev->pause = phydev->asym_pause = 0; phydev->pause = phydev->asym_pause = 0;
if (lpagb & (LPA_1000FULL | LPA_1000HALF)) { if (lpa & (LPA_100FULL | LPA_100HALF)) {
phydev->speed = SPEED_1000;
if (lpagb & LPA_1000FULL)
phydev->duplex = DUPLEX_FULL;
} else if (lpa & (LPA_100FULL | LPA_100HALF)) {
phydev->speed = SPEED_100; phydev->speed = SPEED_100;
if (lpa & LPA_100FULL) if (lpa & LPA_100FULL)
...@@ -222,6 +218,7 @@ static int lxt973a2_read_status(struct phy_device *phydev) ...@@ -222,6 +218,7 @@ static int lxt973a2_read_status(struct phy_device *phydev)
phydev->speed = SPEED_10; phydev->speed = SPEED_10;
phydev->pause = phydev->asym_pause = 0; phydev->pause = phydev->asym_pause = 0;
phydev->lp_advertising = 0;
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment