diff options
author | Roel Kluin <roel.kluin@gmail.com> | 2009-07-12 18:59:53 -0400 |
---|---|---|
committer | Inaky Perez-Gonzalez <inaky@linux.intel.com> | 2009-10-19 02:55:36 -0400 |
commit | 2d44f204adf503eb1774f0ab7e404031168851ea (patch) | |
tree | 7aca07e44a8ba70d031d353f092e392f6541cb0e /drivers/net/wimax | |
parent | a6346fa583766a51b7723288fc5d73ee5ea93479 (diff) |
wimax: misplaced parenthesis
Fix misplaced parenthesis
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Inaky Perez-Gonzalez <inaky@linux.intel.com>
Diffstat (limited to 'drivers/net/wimax')
-rw-r--r-- | drivers/net/wimax/i2400m/tx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wimax/i2400m/tx.c b/drivers/net/wimax/i2400m/tx.c index fa16ccf8e26a..8c2080248aec 100644 --- a/drivers/net/wimax/i2400m/tx.c +++ b/drivers/net/wimax/i2400m/tx.c | |||
@@ -310,7 +310,7 @@ size_t __i2400m_tx_tail_room(struct i2400m *i2400m) | |||
310 | size_t tail_room; | 310 | size_t tail_room; |
311 | size_t tx_in; | 311 | size_t tx_in; |
312 | 312 | ||
313 | if (unlikely(i2400m->tx_in) == 0) | 313 | if (unlikely(i2400m->tx_in == 0)) |
314 | return I2400M_TX_BUF_SIZE; | 314 | return I2400M_TX_BUF_SIZE; |
315 | tx_in = i2400m->tx_in % I2400M_TX_BUF_SIZE; | 315 | tx_in = i2400m->tx_in % I2400M_TX_BUF_SIZE; |
316 | tail_room = I2400M_TX_BUF_SIZE - tx_in; | 316 | tail_room = I2400M_TX_BUF_SIZE - tx_in; |