diff options
author | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2022-02-26 14:56:22 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-02-28 11:57:49 +0000 |
commit | a5081bad2eac5108593ac36b6551201f0df9e897 (patch) | |
tree | 4ed7b83ea44362cf84ab5af948683d395be32e9a /include/linux/phylink.h | |
parent | acf242fc739e8697f6231fe7b0d7078e9649a31b (diff) |
net: phylink: remove phylink_set_pcs()
As all users of phylink_set_pcs() have now been updated to use the
mac_select_pcs() method, it can be removed from the phylink kernel
API and its functionality moved into phylink_major_config().
Removing phylink_set_pcs() gives us a single approach for attaching
a PCS within phylink.
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/phylink.h')
-rw-r--r-- | include/linux/phylink.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/phylink.h b/include/linux/phylink.h index 9ef9b7047f19..223781622b33 100644 --- a/include/linux/phylink.h +++ b/include/linux/phylink.h @@ -532,7 +532,6 @@ void phylink_generic_validate(struct phylink_config *config, struct phylink *phylink_create(struct phylink_config *, struct fwnode_handle *, phy_interface_t iface, const struct phylink_mac_ops *mac_ops); -void phylink_set_pcs(struct phylink *, struct phylink_pcs *pcs); void phylink_destroy(struct phylink *); int phylink_connect_phy(struct phylink *, struct phy_device *); |