diff options
author | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2022-02-19 14:47:17 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-02-19 19:41:50 +0300 |
commit | ccfbf44d4c7fb7c64cf79b3f2a5ae522e5165878 (patch) | |
tree | c1f487af6b9afcde152cc289fd6e03891e7bcccd /include/net/dsa.h | |
parent | e7f27420681f23e7e0f28beed38144058752112e (diff) | |
download | linux-ccfbf44d4c7fb7c64cf79b3f2a5ae522e5165878.tar.xz |
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) <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/dsa.h')
-rw-r--r-- | include/net/dsa.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/net/dsa.h b/include/net/dsa.h index bc6eef6af810..f13de2d8aef3 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. |