diff options
Diffstat (limited to 'drivers/net/ixgb/ixgb_ethtool.c')
-rw-r--r-- | drivers/net/ixgb/ixgb_ethtool.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/drivers/net/ixgb/ixgb_ethtool.c b/drivers/net/ixgb/ixgb_ethtool.c index 181b59dc1ac3..ddad26bb5c58 100644 --- a/drivers/net/ixgb/ixgb_ethtool.c +++ b/drivers/net/ixgb/ixgb_ethtool.c | |||
@@ -659,9 +659,14 @@ ixgb_phys_id(struct net_device *netdev, uint32_t data) | |||
659 | } | 659 | } |
660 | 660 | ||
661 | static int | 661 | static int |
662 | ixgb_get_stats_count(struct net_device *netdev) | 662 | ixgb_get_sset_count(struct net_device *netdev, int sset) |
663 | { | 663 | { |
664 | return IXGB_STATS_LEN; | 664 | switch (sset) { |
665 | case ETH_SS_STATS: | ||
666 | return IXGB_STATS_LEN; | ||
667 | default: | ||
668 | return -EOPNOTSUPP; | ||
669 | } | ||
665 | } | 670 | } |
666 | 671 | ||
667 | static void | 672 | static void |
@@ -719,7 +724,7 @@ static const struct ethtool_ops ixgb_ethtool_ops = { | |||
719 | .set_tso = ixgb_set_tso, | 724 | .set_tso = ixgb_set_tso, |
720 | .get_strings = ixgb_get_strings, | 725 | .get_strings = ixgb_get_strings, |
721 | .phys_id = ixgb_phys_id, | 726 | .phys_id = ixgb_phys_id, |
722 | .get_stats_count = ixgb_get_stats_count, | 727 | .get_sset_count = ixgb_get_sset_count, |
723 | .get_ethtool_stats = ixgb_get_ethtool_stats, | 728 | .get_ethtool_stats = ixgb_get_ethtool_stats, |
724 | }; | 729 | }; |
725 | 730 | ||