aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/sc92031.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/sc92031.c')
-rw-r--r--drivers/net/sc92031.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/drivers/net/sc92031.c b/drivers/net/sc92031.c
index 02c472ecbe55..37b42394560d 100644
--- a/drivers/net/sc92031.c
+++ b/drivers/net/sc92031.c
@@ -1372,9 +1372,14 @@ static void sc92031_ethtool_get_strings(struct net_device *dev,
1372 SILAN_STATS_NUM * ETH_GSTRING_LEN); 1372 SILAN_STATS_NUM * ETH_GSTRING_LEN);
1373} 1373}
1374 1374
1375static int sc92031_ethtool_get_stats_count(struct net_device *dev) 1375static int sc92031_ethtool_get_sset_count(struct net_device *dev, int sset)
1376{ 1376{
1377 return SILAN_STATS_NUM; 1377 switch (sset) {
1378 case ETH_SS_STATS:
1379 return SILAN_STATS_NUM;
1380 default:
1381 return -EOPNOTSUPP;
1382 }
1378} 1383}
1379 1384
1380static void sc92031_ethtool_get_ethtool_stats(struct net_device *dev, 1385static void sc92031_ethtool_get_ethtool_stats(struct net_device *dev,
@@ -1397,7 +1402,7 @@ static struct ethtool_ops sc92031_ethtool_ops = {
1397 .nway_reset = sc92031_ethtool_nway_reset, 1402 .nway_reset = sc92031_ethtool_nway_reset,
1398 .get_link = ethtool_op_get_link, 1403 .get_link = ethtool_op_get_link,
1399 .get_strings = sc92031_ethtool_get_strings, 1404 .get_strings = sc92031_ethtool_get_strings,
1400 .get_stats_count = sc92031_ethtool_get_stats_count, 1405 .get_sset_count = sc92031_ethtool_get_sset_count,
1401 .get_ethtool_stats = sc92031_ethtool_get_ethtool_stats, 1406 .get_ethtool_stats = sc92031_ethtool_get_ethtool_stats,
1402}; 1407};
1403 1408