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/atlx | |
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/atlx')
-rw-r--r-- | drivers/net/atlx/atl1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/atlx/atl1.c b/drivers/net/atlx/atl1.c index e1e0171d6e62..4ba6431deeef 100644 --- a/drivers/net/atlx/atl1.c +++ b/drivers/net/atlx/atl1.c | |||
@@ -2094,9 +2094,9 @@ static u16 atl1_tpd_avail(struct atl1_tpd_ring *tpd_ring) | |||
2094 | { | 2094 | { |
2095 | u16 next_to_clean = atomic_read(&tpd_ring->next_to_clean); | 2095 | u16 next_to_clean = atomic_read(&tpd_ring->next_to_clean); |
2096 | u16 next_to_use = atomic_read(&tpd_ring->next_to_use); | 2096 | u16 next_to_use = atomic_read(&tpd_ring->next_to_use); |
2097 | return ((next_to_clean > next_to_use) ? | 2097 | return (next_to_clean > next_to_use) ? |
2098 | next_to_clean - next_to_use - 1 : | 2098 | next_to_clean - next_to_use - 1 : |
2099 | tpd_ring->count + next_to_clean - next_to_use - 1); | 2099 | tpd_ring->count + next_to_clean - next_to_use - 1; |
2100 | } | 2100 | } |
2101 | 2101 | ||
2102 | static int atl1_tso(struct atl1_adapter *adapter, struct sk_buff *skb, | 2102 | static int atl1_tso(struct atl1_adapter *adapter, struct sk_buff *skb, |