From: Russell King (Oracle) Date: Sat, 19 Feb 2022 11:47:17 +0000 (+0000) Subject: net: dsa: remove pcs_poll X-Git-Tag: v6.1-rc5~1746^2~297^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ccfbf44d4c7fb7c64cf79b3f2a5ae522e5165878;p=platform%2Fkernel%2Flinux-starfive.git net: dsa: remove pcs_poll With drivers converted over to using phylink PCS, there is no need for the struct dsa_switch member "pcs_poll" to exist anymore - there is a flag in the struct phylink_pcs which indicates whether this PCS needs to be polled which supersedes this. Signed-off-by: Russell King (Oracle) Signed-off-by: David S. Miller --- diff --git a/include/net/dsa.h b/include/net/dsa.h index bc6eef6..f13de2d 100644 --- a/include/net/dsa.h +++ b/include/net/dsa.h @@ -391,11 +391,6 @@ struct dsa_switch { */ u32 vlan_filtering:1; - /* MAC PCS does not provide link state change interrupt, and requires - * polling. Flag passed on to PHYLINK. - */ - u32 pcs_poll:1; - /* For switches that only have the MRU configurable. To ensure the * configured MTU is not exceeded, normalization of MRU on all bridged * interfaces is needed. diff --git a/net/dsa/port.c b/net/dsa/port.c index 056c6f5..258782b 100644 --- a/net/dsa/port.c +++ b/net/dsa/port.c @@ -1251,7 +1251,6 @@ static int dsa_port_phylink_register(struct dsa_port *dp) dp->pl_config.dev = ds->dev; dp->pl_config.type = PHYLINK_DEV; - dp->pl_config.pcs_poll = ds->pcs_poll; err = dsa_port_phylink_create(dp); if (err)