diff options
author | John Daiker <daikerjohn@gmail.com> | 2009-02-24 05:16:42 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-02-27 14:53:04 -0500 |
commit | 99da185a72ba685a5aaf49dff6a5fe83885112e4 (patch) | |
tree | 28a45135872ca5cb0b4f4e37967d361f408231c3 /drivers/net/wireless/b43/pio.c | |
parent | ddcb5c78e8dcb470caec2049c2f400651f1710e4 (diff) |
b43: checkpatch.pl cleanups
Keeping this one simple.
Changing a few "foo * bar" to "foo *bar"
Removes 22 checkpatch.pl errors, with no introduced warnings.
Signed-off-by: John Daiker <daikerjohn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43/pio.c')
-rw-r--r-- | drivers/net/wireless/b43/pio.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/net/wireless/b43/pio.c b/drivers/net/wireless/b43/pio.c index 1036bef8c4cc..8cd9776752e6 100644 --- a/drivers/net/wireless/b43/pio.c +++ b/drivers/net/wireless/b43/pio.c | |||
@@ -55,8 +55,8 @@ static u16 generate_cookie(struct b43_pio_txqueue *q, | |||
55 | } | 55 | } |
56 | 56 | ||
57 | static | 57 | static |
58 | struct b43_pio_txqueue * parse_cookie(struct b43_wldev *dev, | 58 | struct b43_pio_txqueue *parse_cookie(struct b43_wldev *dev, |
59 | u16 cookie, | 59 | u16 cookie, |
60 | struct b43_pio_txpacket **pack) | 60 | struct b43_pio_txpacket **pack) |
61 | { | 61 | { |
62 | struct b43_pio *pio = &dev->pio; | 62 | struct b43_pio *pio = &dev->pio; |
@@ -134,8 +134,8 @@ static u16 pio_rxqueue_offset(struct b43_wldev *dev) | |||
134 | return 8; | 134 | return 8; |
135 | } | 135 | } |
136 | 136 | ||
137 | static struct b43_pio_txqueue * b43_setup_pioqueue_tx(struct b43_wldev *dev, | 137 | static struct b43_pio_txqueue *b43_setup_pioqueue_tx(struct b43_wldev *dev, |
138 | unsigned int index) | 138 | unsigned int index) |
139 | { | 139 | { |
140 | struct b43_pio_txqueue *q; | 140 | struct b43_pio_txqueue *q; |
141 | struct b43_pio_txpacket *p; | 141 | struct b43_pio_txpacket *p; |
@@ -171,8 +171,8 @@ static struct b43_pio_txqueue * b43_setup_pioqueue_tx(struct b43_wldev *dev, | |||
171 | return q; | 171 | return q; |
172 | } | 172 | } |
173 | 173 | ||
174 | static struct b43_pio_rxqueue * b43_setup_pioqueue_rx(struct b43_wldev *dev, | 174 | static struct b43_pio_rxqueue *b43_setup_pioqueue_rx(struct b43_wldev *dev, |
175 | unsigned int index) | 175 | unsigned int index) |
176 | { | 176 | { |
177 | struct b43_pio_rxqueue *q; | 177 | struct b43_pio_rxqueue *q; |
178 | 178 | ||
@@ -308,8 +308,8 @@ err_destroy_bk: | |||
308 | } | 308 | } |
309 | 309 | ||
310 | /* Static mapping of mac80211's queues (priorities) to b43 PIO queues. */ | 310 | /* Static mapping of mac80211's queues (priorities) to b43 PIO queues. */ |
311 | static struct b43_pio_txqueue * select_queue_by_priority(struct b43_wldev *dev, | 311 | static struct b43_pio_txqueue *select_queue_by_priority(struct b43_wldev *dev, |
312 | u8 queue_prio) | 312 | u8 queue_prio) |
313 | { | 313 | { |
314 | struct b43_pio_txqueue *q; | 314 | struct b43_pio_txqueue *q; |
315 | 315 | ||