Commit 4f64bcb2 authored by Jonas Bonn's avatar Jonas Bonn Committed by David S. Miller

ethoc: fix function return type

update_ethoc_tx_stats doesn't need to return anything so make its return
type void in order to avoid an unnecessary cast when the function is called.
Signed-off-by: default avatarJonas Bonn <jonas@southpole.se>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8dac428a
...@@ -462,7 +462,7 @@ static int ethoc_rx(struct net_device *dev, int limit) ...@@ -462,7 +462,7 @@ static int ethoc_rx(struct net_device *dev, int limit)
return count; return count;
} }
static int ethoc_update_tx_stats(struct ethoc *dev, struct ethoc_bd *bd) static void ethoc_update_tx_stats(struct ethoc *dev, struct ethoc_bd *bd)
{ {
struct net_device *netdev = dev->netdev; struct net_device *netdev = dev->netdev;
...@@ -492,7 +492,6 @@ static int ethoc_update_tx_stats(struct ethoc *dev, struct ethoc_bd *bd) ...@@ -492,7 +492,6 @@ static int ethoc_update_tx_stats(struct ethoc *dev, struct ethoc_bd *bd)
netdev->stats.collisions += (bd->stat >> 4) & 0xf; netdev->stats.collisions += (bd->stat >> 4) & 0xf;
netdev->stats.tx_bytes += bd->stat >> 16; netdev->stats.tx_bytes += bd->stat >> 16;
netdev->stats.tx_packets++; netdev->stats.tx_packets++;
return 0;
} }
static int ethoc_tx(struct net_device *dev, int limit) static int ethoc_tx(struct net_device *dev, int limit)
...@@ -523,7 +522,7 @@ static int ethoc_tx(struct net_device *dev, int limit) ...@@ -523,7 +522,7 @@ static int ethoc_tx(struct net_device *dev, int limit)
break; break;
} }
(void)ethoc_update_tx_stats(priv, &bd); ethoc_update_tx_stats(priv, &bd);
priv->dty_tx++; priv->dty_tx++;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment