12345678910111213141516171819202122232425262728293031323334 |
- From 5bc26de9bfaa6bb5539c09d4435dced98f429cfc Mon Sep 17 00:00:00 2001
- From: "Russell King (Oracle)" <[email protected]>
- Date: Mon, 11 Apr 2022 10:46:37 +0100
- Subject: [PATCH 09/13] net: dsa: mt7530: mark as non-legacy
- MIME-Version: 1.0
- Content-Type: text/plain; charset=UTF-8
- Content-Transfer-Encoding: 8bit
- The mt7530 driver does not make use of the speed, duplex, pause or
- advertisement in its phylink_mac_config() implementation, so it can be
- marked as a non-legacy driver.
- Tested-by: Marek Behún <[email protected]>
- Signed-off-by: Russell King (Oracle) <[email protected]>
- Signed-off-by: Paolo Abeni <[email protected]>
- ---
- drivers/net/dsa/mt7530.c | 6 ++++++
- 1 file changed, 6 insertions(+)
- --- a/drivers/net/dsa/mt7530.c
- +++ b/drivers/net/dsa/mt7530.c
- @@ -3005,6 +3005,12 @@ static void mt753x_phylink_get_caps(stru
- config->mac_capabilities = MAC_ASYM_PAUSE | MAC_SYM_PAUSE |
- MAC_10 | MAC_100 | MAC_1000FD;
-
- + /* This driver does not make use of the speed, duplex, pause or the
- + * advertisement in its mac_config, so it is safe to mark this driver
- + * as non-legacy.
- + */
- + config->legacy_pre_march2020 = false;
- +
- priv->info->mac_port_get_caps(ds, port, config);
- }
-
|