Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 108033
b: refs/heads/master
c: b08cbcd
h: refs/heads/master
i:
  108031: 9592a77
v: v3
  • Loading branch information
Adrian Bunk authored and John W. Linville committed Aug 7, 2008
1 parent f6d255e commit 45bb12b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f078f209704849c86bd43c0beccfc1f410ed1c66
refs/heads/master: b08cbcd4546445740c2a04291204b56f8baf7be2
6 changes: 5 additions & 1 deletion trunk/drivers/net/wireless/ath9k/hw.c
Original file line number Diff line number Diff line change
Expand Up @@ -4801,7 +4801,11 @@ static void ath9k_hw_9280_spur_mitigate(struct ath_hal *ah,

for (i = 0; i < 123; i++) {
if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
if ((abs(cur_vit_mask - bin)) < 75)

/* workaround for gcc bug #37014 */
volatile int tmp = abs(cur_vit_mask - bin);

if (tmp < 75)
mask_amt = 1;
else
mask_amt = 0;
Expand Down

0 comments on commit 45bb12b

Please sign in to comment.