diff options
author | Jeff Garzik <jeff@garzik.org> | 2007-10-03 21:07:32 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:51:45 -0400 |
commit | b9f2c0440d806e01968c3ed4def930a43be248ad (patch) | |
tree | b8e4668b0a4eab842fc33402e92b15f6c63cbc18 /drivers/net/sc92031.c | |
parent | 753f492093da7a40141bfe083073400f518f4c68 (diff) |
[netdrvr] Stop using legacy hooks ->self_test_count, ->get_stats_count
These have been superceded by the new ->get_sset_count() hook.
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sc92031.c')
-rw-r--r-- | drivers/net/sc92031.c | 11 |
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 | ||
1375 | static int sc92031_ethtool_get_stats_count(struct net_device *dev) | 1375 | static 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 | ||
1380 | static void sc92031_ethtool_get_ethtool_stats(struct net_device *dev, | 1385 | static 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 | ||