diff options
author | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2024-04-12 16:15:03 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2024-04-15 10:48:41 +0100 |
commit | a788fafff56f940dbb1753c5bbbff387f9b97619 (patch) | |
tree | 3e674e6f29378a47109381786f2ca3d6113c70f1 /net/dsa | |
parent | 9382b4f338d261494aad7eeffef0b13ff663b542 (diff) |
net: dsa: convert dsa_user_phylink_fixed_state() to use dsa_phylink_to_port()
Convert dsa_user_phylink_fixed_state() to use the newly introduced
dsa_phylink_to_port() helper.
Suggested-by: Vladimir Oltean <olteanv@gmail.com>
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa')
-rw-r--r-- | net/dsa/user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dsa/user.c b/net/dsa/user.c index 16d395bb1a1f..c94b868855aa 100644 --- a/net/dsa/user.c +++ b/net/dsa/user.c @@ -2445,7 +2445,7 @@ EXPORT_SYMBOL_GPL(dsa_port_phylink_mac_change); static void dsa_user_phylink_fixed_state(struct phylink_config *config, struct phylink_link_state *state) { - struct dsa_port *dp = container_of(config, struct dsa_port, pl_config); + struct dsa_port *dp = dsa_phylink_to_port(config); struct dsa_switch *ds = dp->ds; /* No need to check that this operation is valid, the callback would |