diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2014-07-08 10:38:36 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-07-08 21:06:50 -0700 |
commit | ca12769748ba48fce14a3b3b47da00c3eac635d0 (patch) | |
tree | 139826d56c2bcc0d11585babb893ab7ab307f950 /drivers/net/phy | |
parent | f251f4e37c0f52ebbe0ca72ad309868db28bb78d (diff) | |
download | linux-ca12769748ba48fce14a3b3b47da00c3eac635d0.tar.bz2 |
net: phy: export phy_suspend and phy_resume
phy_suspend and phy_resume are two commonly used helper functions that
need to be exported for Ethernet drivers to be built as modules
Fixes: 40755a0fce17 ("net: systemport: add suspend and resume support")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r-- | drivers/net/phy/phy_device.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c index 35d753d22f78..4f4568ef124e 100644 --- a/drivers/net/phy/phy_device.c +++ b/drivers/net/phy/phy_device.c @@ -696,6 +696,7 @@ int phy_suspend(struct phy_device *phydev) return phydrv->suspend(phydev); return 0; } +EXPORT_SYMBOL(phy_suspend); int phy_resume(struct phy_device *phydev) { @@ -705,6 +706,7 @@ int phy_resume(struct phy_device *phydev) return phydrv->resume(phydev); return 0; } +EXPORT_SYMBOL(phy_resume); /* Generic PHY support and helper functions */ |