diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2015-10-16 12:18:41 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@armlinux.org.uk> | 2017-09-23 15:21:06 +0100 |
commit | ca5b9ad37658d401e11a9d772a7f6d1f2dff5ef3 (patch) | |
tree | fdb5d1b17a8a992e5c1743f9f633965c28342b59 | |
parent | 030677de3d92436583433eb63cf13540713ed34c (diff) |
net: phy: export phy_start_machine() for phylink
phylink will need phy_start_machine exported, so lets export it as a
GPL symbol. Documentation/networking/phy.txt indicates that this
should be a PHY API function.
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r-- | drivers/net/phy/phy.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index 5fd411ed3b85..ba92c4ca21f3 100644 --- a/drivers/net/phy/phy.c +++ b/drivers/net/phy/phy.c @@ -557,6 +557,7 @@ void phy_start_machine(struct phy_device *phydev) { queue_delayed_work(system_power_efficient_wq, &phydev->state_queue, HZ); } +EXPORT_SYMBOL_GPL(phy_start_machine); /** * phy_trigger_machine - trigger the state machine to run |