diff options
Diffstat (limited to 'drivers/net/mv643xx_eth.c')
-rw-r--r-- | drivers/net/mv643xx_eth.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/drivers/net/mv643xx_eth.c b/drivers/net/mv643xx_eth.c index e379165d8375..b33d21f4efff 100644 --- a/drivers/net/mv643xx_eth.c +++ b/drivers/net/mv643xx_eth.c | |||
@@ -2674,9 +2674,14 @@ static void mv643xx_get_drvinfo(struct net_device *netdev, | |||
2674 | drvinfo->n_stats = MV643XX_STATS_LEN; | 2674 | drvinfo->n_stats = MV643XX_STATS_LEN; |
2675 | } | 2675 | } |
2676 | 2676 | ||
2677 | static int mv643xx_get_stats_count(struct net_device *netdev) | 2677 | static int mv643xx_get_sset_count(struct net_device *netdev, int sset) |
2678 | { | 2678 | { |
2679 | return MV643XX_STATS_LEN; | 2679 | switch (sset) { |
2680 | case ETH_SS_STATS: | ||
2681 | return MV643XX_STATS_LEN; | ||
2682 | default: | ||
2683 | return -EOPNOTSUPP; | ||
2684 | } | ||
2680 | } | 2685 | } |
2681 | 2686 | ||
2682 | static void mv643xx_get_ethtool_stats(struct net_device *netdev, | 2687 | static void mv643xx_get_ethtool_stats(struct net_device *netdev, |
@@ -2737,7 +2742,6 @@ static const struct ethtool_ops mv643xx_ethtool_ops = { | |||
2737 | .get_drvinfo = mv643xx_get_drvinfo, | 2742 | .get_drvinfo = mv643xx_get_drvinfo, |
2738 | .get_link = mv643xx_eth_get_link, | 2743 | .get_link = mv643xx_eth_get_link, |
2739 | .set_sg = ethtool_op_set_sg, | 2744 | .set_sg = ethtool_op_set_sg, |
2740 | .get_stats_count = mv643xx_get_stats_count, | ||
2741 | .get_ethtool_stats = mv643xx_get_ethtool_stats, | 2745 | .get_ethtool_stats = mv643xx_get_ethtool_stats, |
2742 | .get_strings = mv643xx_get_strings, | 2746 | .get_strings = mv643xx_get_strings, |
2743 | .nway_reset = mv643xx_eth_nway_restart, | 2747 | .nway_reset = mv643xx_eth_nway_restart, |