aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbe
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2007-10-03 21:07:32 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:51:45 -0400
commitb9f2c0440d806e01968c3ed4def930a43be248ad (patch)
treeb8e4668b0a4eab842fc33402e92b15f6c63cbc18 /drivers/net/ixgbe
parent753f492093da7a40141bfe083073400f518f4c68 (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/ixgbe')
-rw-r--r--drivers/net/ixgbe/ixgbe_ethtool.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/drivers/net/ixgbe/ixgbe_ethtool.c b/drivers/net/ixgbe/ixgbe_ethtool.c
index 43a2a46e2874..a4e576a0c543 100644
--- a/drivers/net/ixgbe/ixgbe_ethtool.c
+++ b/drivers/net/ixgbe/ixgbe_ethtool.c
@@ -737,9 +737,14 @@ err_setup:
737 return err; 737 return err;
738} 738}
739 739
740static int ixgbe_get_stats_count(struct net_device *netdev) 740static int ixgbe_get_sset_count(struct net_device *netdev, int sset)
741{ 741{
742 return IXGBE_STATS_LEN; 742 switch (sset) {
743 case ETH_SS_STATS:
744 return IXGBE_STATS_LEN;
745 default:
746 return -EOPNOTSUPP;
747 }
743} 748}
744 749
745static void ixgbe_get_ethtool_stats(struct net_device *netdev, 750static void ixgbe_get_ethtool_stats(struct net_device *netdev,
@@ -931,7 +936,7 @@ static struct ethtool_ops ixgbe_ethtool_ops = {
931 .set_tso = ixgbe_set_tso, 936 .set_tso = ixgbe_set_tso,
932 .get_strings = ixgbe_get_strings, 937 .get_strings = ixgbe_get_strings,
933 .phys_id = ixgbe_phys_id, 938 .phys_id = ixgbe_phys_id,
934 .get_stats_count = ixgbe_get_stats_count, 939 .get_sset_count = ixgbe_get_sset_count,
935 .get_ethtool_stats = ixgbe_get_ethtool_stats, 940 .get_ethtool_stats = ixgbe_get_ethtool_stats,
936 .get_coalesce = ixgbe_get_coalesce, 941 .get_coalesce = ixgbe_get_coalesce,
937 .set_coalesce = ixgbe_set_coalesce, 942 .set_coalesce = ixgbe_set_coalesce,