aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/phy/phylink.c
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@armlinux.org.uk>2017-12-20 23:23:33 +0000
committerDavid S. Miller <davem@davemloft.net>2017-12-21 15:03:10 -0500
commitfe1c3ef201c1ae629df9ee60b64e7030f6e703fb (patch)
treeece6c0dee56a378d7c6bba56156fd01e65090b11 /drivers/net/phy/phylink.c
parentnet: ibm: emac: support RGMII-[RX|TX]ID phymode (diff)
downloadlinux-dev-fe1c3ef201c1ae629df9ee60b64e7030f6e703fb.tar.xz
linux-dev-fe1c3ef201c1ae629df9ee60b64e7030f6e703fb.zip
phylink: avoid attaching more than one PHY
Attaching more than one PHY to phylink is bad news, as we store a pointer to the PHY in a single location. Error out if more than one PHY is attempted to be attached. Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/phylink.c')
-rw-r--r--drivers/net/phy/phylink.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/phy/phylink.c b/drivers/net/phy/phylink.c
index f7a777475762..2ec140ec7923 100644
--- a/drivers/net/phy/phylink.c
+++ b/drivers/net/phy/phylink.c
@@ -725,6 +725,9 @@ int phylink_connect_phy(struct phylink *pl, struct phy_device *phy)
phy_interface_mode_is_8023z(pl->link_interface))))
return -EINVAL;
+ if (pl->phydev)
+ return -EBUSY;
+
/* Use PHY device/driver interface */
if (pl->link_interface == PHY_INTERFACE_MODE_NA) {
pl->link_interface = phy->interface;