aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/chelsio
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/chelsio')
-rw-r--r--drivers/net/chelsio/cxgb2.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/drivers/net/chelsio/cxgb2.c b/drivers/net/chelsio/cxgb2.c
index 7029f13d008d..2dbf8dc116c6 100644
--- a/drivers/net/chelsio/cxgb2.c
+++ b/drivers/net/chelsio/cxgb2.c
@@ -439,9 +439,14 @@ static void get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
439 strcpy(info->bus_info, pci_name(adapter->pdev)); 439 strcpy(info->bus_info, pci_name(adapter->pdev));
440} 440}
441 441
442static int get_stats_count(struct net_device *dev) 442static int get_sset_count(struct net_device *dev, int sset)
443{ 443{
444 return ARRAY_SIZE(stats_strings); 444 switch (sset) {
445 case ETH_SS_STATS:
446 return ARRAY_SIZE(stats_strings);
447 default:
448 return -EOPNOTSUPP;
449 }
445} 450}
446 451
447static void get_strings(struct net_device *dev, u32 stringset, u8 *data) 452static void get_strings(struct net_device *dev, u32 stringset, u8 *data)
@@ -798,7 +803,7 @@ static const struct ethtool_ops t1_ethtool_ops = {
798 .set_sg = ethtool_op_set_sg, 803 .set_sg = ethtool_op_set_sg,
799 .get_link = ethtool_op_get_link, 804 .get_link = ethtool_op_get_link,
800 .get_strings = get_strings, 805 .get_strings = get_strings,
801 .get_stats_count = get_stats_count, 806 .get_sset_count = get_sset_count,
802 .get_ethtool_stats = get_stats, 807 .get_ethtool_stats = get_stats,
803 .get_regs_len = get_regs_len, 808 .get_regs_len = get_regs_len,
804 .get_regs = get_regs, 809 .get_regs = get_regs,