[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20140408071101.GA14453@gmail.com>
Date: Tue, 8 Apr 2014 09:11:01 +0200
From: Tobias Waldekranz <tobias@...dekranz.com>
To: netdev@...r.kernel.org
Subject: [PATCH] phylib: export phy_suspend and phy_resume
These functions are exported in include/linux/phy.h but the symbol
exports where missing.
Signed-off-by: Tobias Waldekranz <tobias@...dekranz.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
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists