aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstephen hemminger <shemminger@vyatta.com>2013-03-08 04:07:42 -0500
committerDavid S. Miller <davem@davemloft.net>2013-03-09 16:09:17 -0500
commitbaec126cf6a864e0191cf51ac1940f3c4c211617 (patch)
tree679572e1667ed21c38e5f68113cad4d31d1d2ffa
parent199453339d7bc0d9bdb548854eb7e62ac33b9296 (diff)
phy: vitesse make vsc824x_add_skew static
Function is only used in this file, should be static and not an exported symbol. Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/phy/vitesse.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/phy/vitesse.c b/drivers/net/phy/vitesse.c
index 2585c383e623..3492b5391273 100644
--- a/drivers/net/phy/vitesse.c
+++ b/drivers/net/phy/vitesse.c
@@ -61,7 +61,7 @@ MODULE_DESCRIPTION("Vitesse PHY driver");
61MODULE_AUTHOR("Kriston Carson"); 61MODULE_AUTHOR("Kriston Carson");
62MODULE_LICENSE("GPL"); 62MODULE_LICENSE("GPL");
63 63
64int vsc824x_add_skew(struct phy_device *phydev) 64static int vsc824x_add_skew(struct phy_device *phydev)
65{ 65{
66 int err; 66 int err;
67 int extcon; 67 int extcon;
@@ -81,7 +81,6 @@ int vsc824x_add_skew(struct phy_device *phydev)
81 81
82 return err; 82 return err;
83} 83}
84EXPORT_SYMBOL(vsc824x_add_skew);
85 84
86static int vsc824x_config_init(struct phy_device *phydev) 85static int vsc824x_config_init(struct phy_device *phydev)
87{ 86{