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: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>

authored by Kumar Gala and committed by Jeff Garzik 9f6d55d0 d08d2839

+2 -1
+2 -1
drivers/net/phy/phy.c
··· 286 287 return 0; 288 } 289 290 int phy_ethtool_gset(struct phy_device *phydev, struct ethtool_cmd *cmd) 291 { ··· 303 304 return 0; 305 } 306 - 307 308 /* Note that this function is currently incompatible with the 309 * PHYCONTROL layer. It changes registers without regard to
··· 286 287 return 0; 288 } 289 + EXPORT_SYMBOL(phy_ethtool_sset); 290 291 int phy_ethtool_gset(struct phy_device *phydev, struct ethtool_cmd *cmd) 292 { ··· 302 303 return 0; 304 } 305 + EXPORT_SYMBOL(phy_ethtool_gset); 306 307 /* Note that this function is currently incompatible with the 308 * PHYCONTROL layer. It changes registers without regard to