[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>
This commit is contained in:
committed by
David S. Miller
parent
753f492093
commit
b9f2c0440d
@ -410,9 +410,14 @@ static const struct skge_stat {
|
||||
{ "rx_fcs_error", XM_RXF_FCS_ERR, GM_RXF_FCS_ERR },
|
||||
};
|
||||
|
||||
static int skge_get_stats_count(struct net_device *dev)
|
||||
static int skge_get_sset_count(struct net_device *dev, int sset)
|
||||
{
|
||||
return ARRAY_SIZE(skge_stats);
|
||||
switch (sset) {
|
||||
case ETH_SS_STATS:
|
||||
return ARRAY_SIZE(skge_stats);
|
||||
default:
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
}
|
||||
|
||||
static void skge_get_ethtool_stats(struct net_device *dev,
|
||||
@ -817,7 +822,7 @@ static const struct ethtool_ops skge_ethtool_ops = {
|
||||
.set_rx_csum = skge_set_rx_csum,
|
||||
.get_strings = skge_get_strings,
|
||||
.phys_id = skge_phys_id,
|
||||
.get_stats_count = skge_get_stats_count,
|
||||
.get_sset_count = skge_get_sset_count,
|
||||
.get_ethtool_stats = skge_get_ethtool_stats,
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user