diff options
author | Joe Perches <joe@perches.com> | 2017-01-11 14:52:20 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-01-12 15:14:09 -0500 |
commit | b65b09aa79086f0f2aa8935eae410f87495b8c04 (patch) | |
tree | 8d51d3effca6cc848e8e2dbbd133defa3ec01fa8 /drivers/net/ethernet/tile | |
parent | 72d13c15fcc99788775a9f846805cbe4e6f1a164 (diff) | |
download | linux-b65b09aa79086f0f2aa8935eae410f87495b8c04.tar.bz2 |
tilepro: Fix non-void return from void function
commit bc1f44709cf2 ("net: make ndo_get_stats64 a void function")
mistakenly used a return value for this void conversion.
Fix it.
Signed-off-by: Joe Perches <joe@perches.com>
cc: stephen hemminger <stephen@networkplumber.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/tile')
-rw-r--r-- | drivers/net/ethernet/tile/tilepro.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/net/ethernet/tile/tilepro.c b/drivers/net/ethernet/tile/tilepro.c index 30cfea62a356..44f153713791 100644 --- a/drivers/net/ethernet/tile/tilepro.c +++ b/drivers/net/ethernet/tile/tilepro.c @@ -2090,12 +2090,8 @@ static void tile_net_get_stats64(struct net_device *dev, stats->tx_bytes = tx_bytes; stats->rx_errors = rx_errors; stats->rx_dropped = rx_dropped; - - return stats; } - - /* * Change the Ethernet Address of the NIC. * |