aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/cadence/macb.c
diff options
context:
space:
mode:
authorLad, Prabhakar <prabhakar.csengg@gmail.com>2015-02-05 11:21:07 -0500
committerDavid S. Miller <davem@davemloft.net>2015-02-05 19:03:28 -0500
commit8093b1c313a3328f8cef497aef863f8fd9c1bfdf (patch)
tree2ae4d9c30cc1392efc8d4825d889f0fc83fdef8c /drivers/net/ethernet/cadence/macb.c
parent1444c301a42217335d21fd3704baa34e72a1e6bf (diff)
net/macb: fix sparse warning
this patch fixes following sparse warning: macb.c:2038:26: warning: symbol 'gem_ethtool_ops' was not declared. Should it be static? Alongside drops exporting of gem_ethtool_ops as there is no need. Signed-off-by: Lad, Prabhakar <prabhakar.csengg@gmail.com> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/cadence/macb.c')
-rw-r--r--drivers/net/ethernet/cadence/macb.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/ethernet/cadence/macb.c b/drivers/net/ethernet/cadence/macb.c
index 4f7bd13796b8..ad76b8e35a00 100644
--- a/drivers/net/ethernet/cadence/macb.c
+++ b/drivers/net/ethernet/cadence/macb.c
@@ -2035,7 +2035,7 @@ const struct ethtool_ops macb_ethtool_ops = {
2035}; 2035};
2036EXPORT_SYMBOL_GPL(macb_ethtool_ops); 2036EXPORT_SYMBOL_GPL(macb_ethtool_ops);
2037 2037
2038const struct ethtool_ops gem_ethtool_ops = { 2038static const struct ethtool_ops gem_ethtool_ops = {
2039 .get_settings = macb_get_settings, 2039 .get_settings = macb_get_settings,
2040 .set_settings = macb_set_settings, 2040 .set_settings = macb_set_settings,
2041 .get_regs_len = macb_get_regs_len, 2041 .get_regs_len = macb_get_regs_len,
@@ -2046,7 +2046,6 @@ const struct ethtool_ops gem_ethtool_ops = {
2046 .get_strings = gem_get_ethtool_strings, 2046 .get_strings = gem_get_ethtool_strings,
2047 .get_sset_count = gem_get_sset_count, 2047 .get_sset_count = gem_get_sset_count,
2048}; 2048};
2049EXPORT_SYMBOL_GPL(gem_ethtool_ops);
2050 2049
2051int macb_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) 2050int macb_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2052{ 2051{