diff options
author | John Daiker <daikerjohn@gmail.com> | 2008-10-17 12:16:17 -0700 |
---|---|---|
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) | |
download | linux-558875112c28c7b2744a92c9836c256dd57bc5b6.tar.gz linux-558875112c28c7b2744a92c9836c256dd57bc5b6.tar.bz2 linux-558875112c28c7b2744a92c9836c256dd57bc5b6.zip |
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 070786ebd076..e9f4261054bc 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) queue->length++; } else if (index == Q_INDEX_DONE) { queue->length--; - queue->count ++; + queue->count++; } spin_unlock_irqrestore(&queue->lock, irqflags); |