We need to export phy_ethtool_gset and phy_ethtool_sset to allow drivers that use these functions to be built as modules.
Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- commit 7fff6ffb83f2543299df3ed8815976440abdd576 tree 0eea7a64a684a3d3970cec9a8c9c65ee2839ebfc parent a8b3485287731978899ced11f24628c927890e78 author Kumar Gala <[EMAIL PROTECTED]> Sat, 20 Jan 2007 16:28:13 -0600 committer Kumar Gala <[EMAIL PROTECTED]> Sat, 20 Jan 2007 16:28:13 -0600 drivers/net/phy/phy.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index e175f39..868400d 100644 --- a/drivers/net/phy/phy.c +++ b/drivers/net/phy/phy.c @@ -286,6 +286,7 @@ int phy_ethtool_sset(struct phy_device *phydev, struct ethtool_cmd *cmd) return 0; } +EXPORT_SYMBOL(phy_ethtool_sset); int phy_ethtool_gset(struct phy_device *phydev, struct ethtool_cmd *cmd) { @@ -302,6 +303,7 @@ int phy_ethtool_gset(struct phy_device *phydev, struct ethtool_cmd *cmd) return 0; } +EXPORT_SYMBOL(phy_ethtool_gset); /* Note that this function is currently incompatible with the - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html