netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] phylib: export phy_suspend and phy_resume
@ 2014-04-08  7:11 Tobias Waldekranz
  2014-04-08 15:26 ` Florian Fainelli
  2014-04-08 16:29 ` David Miller
  0 siblings, 2 replies; 5+ messages in thread
From: Tobias Waldekranz @ 2014-04-08  7:11 UTC (permalink / raw)
  To: netdev

These functions are exported in include/linux/phy.h but the symbol
exports where missing.

Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com>
---
 drivers/net/phy/phy_device.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c
index 0ce6066..7485334 100644
--- a/drivers/net/phy/phy_device.c
+++ b/drivers/net/phy/phy_device.c
@@ -695,6 +695,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)
 {
@@ -704,6 +705,7 @@ int phy_resume(struct phy_device *phydev)
 		return phydrv->resume(phydev);
 	return 0;
 }
+EXPORT_SYMBOL(phy_resume);
 
 /* Generic PHY support and helper functions */
 
-- 
1.8.4.357.g8d83871.dirty

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-04-08 17:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-08  7:11 [PATCH] phylib: export phy_suspend and phy_resume Tobias Waldekranz
2014-04-08 15:26 ` Florian Fainelli
2014-04-08 17:04   ` David Miller
2014-04-08 16:29 ` David Miller
2014-04-08 17:07   ` Tobias Waldekranz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).