diff options
Diffstat (limited to 'drivers/net/gianfar_ethtool.c')
| -rw-r--r-- | drivers/net/gianfar_ethtool.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/gianfar_ethtool.c b/drivers/net/gianfar_ethtool.c index 9bda023c023..5c566ebc54b 100644 --- a/drivers/net/gianfar_ethtool.c +++ b/drivers/net/gianfar_ethtool.c @@ -254,7 +254,7 @@ static unsigned int gfar_usecs2ticks(struct gfar_private *priv, unsigned int use  	/* Make sure we return a number greater than 0  	 * if usecs > 0 */ -	return ((usecs * 1000 + count - 1) / count); +	return (usecs * 1000 + count - 1) / count;  }  /* Convert ethernet clock ticks to microseconds */ @@ -278,7 +278,7 @@ static unsigned int gfar_ticks2usecs(struct gfar_private *priv, unsigned int tic  	/* Make sure we return a number greater than 0 */  	/* if ticks is > 0 */ -	return ((ticks * count) / 1000); +	return (ticks * count) / 1000;  }  /* Get the coalescing parameters, and put them in the cvals @@ -538,7 +538,7 @@ static int gfar_set_rx_csum(struct net_device *dev, uint32_t data)  		unlock_tx_qs(priv);  		unlock_rx_qs(priv); -		local_irq_save(flags); +		local_irq_restore(flags);  		for (i = 0; i < priv->num_rx_queues; i++)  			gfar_clean_rx_ring(priv->rx_queue[i],  |