d40756563c
Let's pick a bunch of useful phylink changes which allow us to keep drivers in sync with mainline Linux. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
From ecec0ebbc6381a5a375f1cf10c4858f24e91e2ef Mon Sep 17 00:00:00 2001
|
|
From: "Russell King (Oracle)" <rmk+kernel@armlinux.org.uk>
|
|
Date: Wed, 15 Mar 2023 14:46:49 +0000
|
|
Subject: [PATCH] net: pcs: lynx: don't print an_enabled in pcs_get_state()
|
|
|
|
an_enabled will be going away, and in any case, pcs_get_state() should
|
|
not be updating this member. Remove the print.
|
|
|
|
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
|
|
Reviewed-by: Steen Hegelund <Steen.Hegelund@microchip.com>
|
|
Signed-off-by: David S. Miller <davem@davemloft.net>
|
|
---
|
|
drivers/net/pcs/pcs-lynx.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/drivers/net/pcs/pcs-lynx.c
|
|
+++ b/drivers/net/pcs/pcs-lynx.c
|
|
@@ -115,11 +115,11 @@ static void lynx_pcs_get_state(struct ph
|
|
}
|
|
|
|
dev_dbg(&lynx->mdio->dev,
|
|
- "mode=%s/%s/%s link=%u an_enabled=%u an_complete=%u\n",
|
|
+ "mode=%s/%s/%s link=%u an_complete=%u\n",
|
|
phy_modes(state->interface),
|
|
phy_speed_to_str(state->speed),
|
|
phy_duplex_to_str(state->duplex),
|
|
- state->link, state->an_enabled, state->an_complete);
|
|
+ state->link, state->an_complete);
|
|
}
|
|
|
|
static int lynx_pcs_config_giga(struct mdio_device *pcs, unsigned int mode,
|