net: asix: Staticise non-exported symbols
authorMark Brown <broonie@linaro.org>
Fri, 9 Aug 2013 17:31:21 +0000 (18:31 +0100)
committerDavid S. Miller <davem@davemloft.net>
Tue, 13 Aug 2013 21:13:52 +0000 (14:13 -0700)
Make functions that are only referenced from ops structures static, they
do not need to be in the global namespace and sparse complains about this.

Signed-off-by: Mark Brown <broonie@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/usb/ax88172a.c

index d012203b0f298dd1e1fc1a69192cda3d0c82c523..723b3879ecc2e195515037404f1bb4eae8a6f3f4 100644 (file)
@@ -161,7 +161,8 @@ static const struct net_device_ops ax88172a_netdev_ops = {
        .ndo_set_rx_mode        = asix_set_multicast,
 };
 
-int ax88172a_get_settings(struct net_device *net, struct ethtool_cmd *cmd)
+static int ax88172a_get_settings(struct net_device *net,
+                                struct ethtool_cmd *cmd)
 {
        if (!net->phydev)
                return -ENODEV;
@@ -169,7 +170,8 @@ int ax88172a_get_settings(struct net_device *net, struct ethtool_cmd *cmd)
        return phy_ethtool_gset(net->phydev, cmd);
 }
 
-int ax88172a_set_settings(struct net_device *net, struct ethtool_cmd *cmd)
+static int ax88172a_set_settings(struct net_device *net,
+                                struct ethtool_cmd *cmd)
 {
        if (!net->phydev)
                return -ENODEV;
@@ -177,7 +179,7 @@ int ax88172a_set_settings(struct net_device *net, struct ethtool_cmd *cmd)
        return phy_ethtool_sset(net->phydev, cmd);
 }
 
-int ax88172a_nway_reset(struct net_device *net)
+static int ax88172a_nway_reset(struct net_device *net)
 {
        if (!net->phydev)
                return -ENODEV;