diff options
author | John Daiker <daikerjohn@gmail.com> | 2008-10-17 15:16:17 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-10-31 19:00:40 -0400 |
commit | 558875112c28c7b2744a92c9836c256dd57bc5b6 (patch) | |
tree | bf68c8283caebed06c453683ac2cd797d7868342 /drivers/net/wireless/rt2x00/rt2x00queue.c | |
parent | 0bbac08f0a23898787978c0b405474e453e9824c (diff) |
rt2x00: reduce checkpatch.pl errors
A few changes to reduce checkpatch.pl errors in the rt2x00 driver. For
the most part, I only fixed cosmetic things, and left the actual 'code
flow' untouched (hopefully)!
Diff is against wireless-testing HEAD.
Signed-off-by: John Daiker <daikerjohn@gmail.com>
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00queue.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00queue.c b/drivers/net/wireless/rt2x00/rt2x00queue.c index 070786ebd07..e9f4261054b 100644 --- a/drivers/net/wireless/rt2x00/rt2x00queue.c +++ b/drivers/net/wireless/rt2x00/rt2x00queue.c | |||
@@ -570,7 +570,7 @@ void rt2x00queue_index_inc(struct data_queue *queue, enum queue_index index) | |||
570 | queue->length++; | 570 | queue->length++; |
571 | } else if (index == Q_INDEX_DONE) { | 571 | } else if (index == Q_INDEX_DONE) { |
572 | queue->length--; | 572 | queue->length--; |
573 | queue->count ++; | 573 | queue->count++; |
574 | } | 574 | } |
575 | 575 | ||
576 | spin_unlock_irqrestore(&queue->lock, irqflags); | 576 | spin_unlock_irqrestore(&queue->lock, irqflags); |