Message ID | E1rvIcJ-006bQK-Hh@rmk-PC.armlinux.org.uk (mailing list archive) |
---|---|
State | Accepted |
Commit | a788fafff56f940dbb1753c5bbbff387f9b97619 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] net: dsa: convert dsa_user_phylink_fixed_state() to use dsa_phylink_to_port() | expand |
Hello: This patch was applied to netdev/net-next.git (main) by David S. Miller <davem@davemloft.net>: On Fri, 12 Apr 2024 16:15:03 +0100 you wrote: > 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> > --- > net/dsa/user.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - [net-next] net: dsa: convert dsa_user_phylink_fixed_state() to use dsa_phylink_to_port() https://git.kernel.org/netdev/net-next/c/a788fafff56f You are awesome, thank you!
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
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> --- net/dsa/user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)