Commit 727a282f authored by Nikita Kiryanov's avatar Nikita Kiryanov Committed by David S. Miller

dm9000: report the correct LPA

Report the LPA by checking mii_if_info, instead of just saying "no LPA" every
time.

Cc: David S. Miller <davem@davemloft.net>
Cc: Jingoo Han <jg1.han@samsung.com>
Cc: Mugunthan V N <mugunthanvnm@ti.com>
Signed-off-by: default avatarNikita Kiryanov <nikita@compulab.co.il>
Signed-off-by: default avatarIgor Grinberg <grinberg@compulab.co.il>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 09ee9f87
...@@ -753,15 +753,20 @@ static const struct ethtool_ops dm9000_ethtool_ops = { ...@@ -753,15 +753,20 @@ static const struct ethtool_ops dm9000_ethtool_ops = {
static void dm9000_show_carrier(board_info_t *db, static void dm9000_show_carrier(board_info_t *db,
unsigned carrier, unsigned nsr) unsigned carrier, unsigned nsr)
{ {
int lpa;
struct net_device *ndev = db->ndev; struct net_device *ndev = db->ndev;
struct mii_if_info *mii = &db->mii;
unsigned ncr = dm9000_read_locked(db, DM9000_NCR); unsigned ncr = dm9000_read_locked(db, DM9000_NCR);
if (carrier) if (carrier) {
dev_info(db->dev, "%s: link up, %dMbps, %s-duplex, no LPA\n", lpa = mii->mdio_read(mii->dev, mii->phy_id, MII_LPA);
dev_info(db->dev,
"%s: link up, %dMbps, %s-duplex, lpa 0x%04X\n",
ndev->name, (nsr & NSR_SPEED) ? 10 : 100, ndev->name, (nsr & NSR_SPEED) ? 10 : 100,
(ncr & NCR_FDX) ? "full" : "half"); (ncr & NCR_FDX) ? "full" : "half", lpa);
else } else {
dev_info(db->dev, "%s: link down\n", ndev->name); dev_info(db->dev, "%s: link down\n", ndev->name);
}
} }
static void static void
......
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