diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-09-23 01:40:09 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-09-26 21:34:29 -0400 |
commit | 807540baae406c84dcb9c1c8ef07a56d2d2ae84a (patch) | |
tree | ccd5c2cb57710dd6b73cf8df11eedf67abc14ae4 /drivers/net/igbvf | |
parent | cb4dfe562cac6fcb544df752e40c1d78000d0712 (diff) |
drivers/net: return operator cleanup
Change "return (EXPR);" to "return EXPR;"
return is not a function, parentheses are not required.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/igbvf')
-rw-r--r-- | drivers/net/igbvf/ethtool.c | 2 | ||||
-rw-r--r-- | drivers/net/igbvf/netdev.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/igbvf/ethtool.c b/drivers/net/igbvf/ethtool.c index 103b3aa1afc2..33add708bcbe 100644 --- a/drivers/net/igbvf/ethtool.c +++ b/drivers/net/igbvf/ethtool.c | |||
@@ -153,7 +153,7 @@ static int igbvf_set_rx_csum(struct net_device *netdev, u32 data) | |||
153 | 153 | ||
154 | static u32 igbvf_get_tx_csum(struct net_device *netdev) | 154 | static u32 igbvf_get_tx_csum(struct net_device *netdev) |
155 | { | 155 | { |
156 | return ((netdev->features & NETIF_F_IP_CSUM) != 0); | 156 | return (netdev->features & NETIF_F_IP_CSUM) != 0; |
157 | } | 157 | } |
158 | 158 | ||
159 | static int igbvf_set_tx_csum(struct net_device *netdev, u32 data) | 159 | static int igbvf_set_tx_csum(struct net_device *netdev, u32 data) |
diff --git a/drivers/net/igbvf/netdev.c b/drivers/net/igbvf/netdev.c index c7fab80d2490..265501348f33 100644 --- a/drivers/net/igbvf/netdev.c +++ b/drivers/net/igbvf/netdev.c | |||
@@ -845,7 +845,7 @@ static bool igbvf_clean_tx_irq(struct igbvf_ring *tx_ring) | |||
845 | } | 845 | } |
846 | adapter->net_stats.tx_bytes += total_bytes; | 846 | adapter->net_stats.tx_bytes += total_bytes; |
847 | adapter->net_stats.tx_packets += total_packets; | 847 | adapter->net_stats.tx_packets += total_packets; |
848 | return (count < tx_ring->count); | 848 | return count < tx_ring->count; |
849 | } | 849 | } |
850 | 850 | ||
851 | static irqreturn_t igbvf_msix_other(int irq, void *data) | 851 | static irqreturn_t igbvf_msix_other(int irq, void *data) |