diff options
author | Dale Farnsworth <dale@farnsworth.org> | 2007-10-20 12:16:27 -0700 |
---|---|---|
committer | Dale Farnsworth <dale@farnsworth.org> | 2007-10-23 12:31:52 -0700 |
commit | 194b2d0e9216dbd3a57fda31440611d515f1dfa2 (patch) | |
tree | f54681bf997ce1f805269cf3395a28f08dd1a471 | |
parent | e8b8c977734193adedf2b0f607d6252c78e86394 (diff) | |
download | linux-3.10-194b2d0e9216dbd3a57fda31440611d515f1dfa2.tar.gz linux-3.10-194b2d0e9216dbd3a57fda31440611d515f1dfa2.tar.bz2 linux-3.10-194b2d0e9216dbd3a57fda31440611d515f1dfa2.zip |
mv643xx_eth: Hook up mv643xx_get_sset_count
Commit b9f2c044 replaced mv643xx_get_stats_count() with
mv643xx_get_sset_count(), but forgot to hook it up.
drivers/net/mv643xx_eth.c:2678: warning: mv643xx_get_sset_count defined but not used
Signed-off-by: Dale Farnsworth <dale@farnsworth.org>
-rw-r--r-- | drivers/net/mv643xx_eth.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/mv643xx_eth.c b/drivers/net/mv643xx_eth.c index 84f2d6382f1..54e48281c3d 100644 --- a/drivers/net/mv643xx_eth.c +++ b/drivers/net/mv643xx_eth.c @@ -2742,6 +2742,7 @@ static const struct ethtool_ops mv643xx_ethtool_ops = { .get_drvinfo = mv643xx_get_drvinfo, .get_link = mv643xx_eth_get_link, .set_sg = ethtool_op_set_sg, + .get_sset_count = mv643xx_get_sset_count, .get_ethtool_stats = mv643xx_get_ethtool_stats, .get_strings = mv643xx_get_strings, .nway_reset = mv643xx_eth_nway_restart, |