Commit 9f6d55d0 authored by Kumar Gala's avatar Kumar Gala Committed by Jeff Garzik

PHY: Export phy ethtool helpers

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: default avatarKumar Gala <galak@kernel.crashing.org>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent d08d2839
...@@ -286,6 +286,7 @@ int phy_ethtool_sset(struct phy_device *phydev, struct ethtool_cmd *cmd) ...@@ -286,6 +286,7 @@ int phy_ethtool_sset(struct phy_device *phydev, struct ethtool_cmd *cmd)
return 0; return 0;
} }
EXPORT_SYMBOL(phy_ethtool_sset);
int phy_ethtool_gset(struct phy_device *phydev, struct ethtool_cmd *cmd) int phy_ethtool_gset(struct phy_device *phydev, struct ethtool_cmd *cmd)
{ {
...@@ -302,7 +303,7 @@ int phy_ethtool_gset(struct phy_device *phydev, struct ethtool_cmd *cmd) ...@@ -302,7 +303,7 @@ int phy_ethtool_gset(struct phy_device *phydev, struct ethtool_cmd *cmd)
return 0; return 0;
} }
EXPORT_SYMBOL(phy_ethtool_gset);
/* Note that this function is currently incompatible with the /* Note that this function is currently incompatible with the
* PHYCONTROL layer. It changes registers without regard to * PHYCONTROL layer. It changes registers without regard to
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment