summaryrefslogtreecommitdiff
path: root/drivers/net/phy/phy.c
diff options
context:
space:
mode:
authorDaniel Mack <zonque@gmail.com>2014-06-18 09:01:41 (GMT)
committerDavid S. Miller <davem@davemloft.net>2014-06-21 22:50:00 (GMT)
commit2b8f2a28eac1d35a432705d269f02bdaeba9be8f (patch)
treef7115b72a1f524f7edfaf75b0d60146a104dd2bf /drivers/net/phy/phy.c
parent916c1689a09bc1ca81f2d7a34876f8d35aadd11b (diff)
downloadlinux-2b8f2a28eac1d35a432705d269f02bdaeba9be8f.tar.xz
net: phylib: add link_change_notify callback to phy device
Add a notify callback to inform phy drivers when the core is about to do its link adjustment. No change for drivers that do not implement this callback. Signed-off-by: Daniel Mack <zonque@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/phy.c')
-rw-r--r--drivers/net/phy/phy.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c
index 3bc079a..f7c6181 100644
--- a/drivers/net/phy/phy.c
+++ b/drivers/net/phy/phy.c
@@ -720,6 +720,9 @@ void phy_state_machine(struct work_struct *work)
mutex_lock(&phydev->lock);
+ if (phydev->drv->link_change_notify)
+ phydev->drv->link_change_notify(phydev);
+
switch (phydev->state) {
case PHY_DOWN:
case PHY_STARTING: