diff options
author | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2022-04-11 10:46:37 +0100 |
---|---|---|
committer | Paolo Abeni <pabeni@redhat.com> | 2022-04-12 10:33:15 +0200 |
commit | 7b972512ec0e16df298366b31326f3707f5dbbdd (patch) | |
tree | c438403cb73d09d9e59790c99c3608b62c5901e3 | |
parent | 9d0df207c002e1532c109fb06c8895d1855fba40 (diff) | |
download | linux-7b972512ec0e16df298366b31326f3707f5dbbdd.tar.bz2 |
net: dsa: mt7530: mark as non-legacy
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 <kabel@kernel.org>
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
-rw-r--r-- | drivers/net/dsa/mt7530.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/dsa/mt7530.c b/drivers/net/dsa/mt7530.c index 0ee2cb7e5664..c4ea73d996e8 100644 --- a/drivers/net/dsa/mt7530.c +++ b/drivers/net/dsa/mt7530.c @@ -2897,6 +2897,12 @@ static void mt753x_phylink_get_caps(struct dsa_switch *ds, int port, 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); } |