Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 149875
b: refs/heads/master
c: 4bd7f03
h: refs/heads/master
i:
  149873: 86e3a8c
  149871: 3032f6e
v: v3
  • Loading branch information
Jussi Kivilinna authored and John W. Linville committed Apr 22, 2009
1 parent 8fb9ee1 commit 69b4443
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 06aa7afaaa21a4e7f1bcb196bd3f29193924a603
refs/heads/master: 4bd7f03e915b6946307ce57f20718c6547734b5d
6 changes: 3 additions & 3 deletions trunk/drivers/net/wireless/rndis_wlan.c
Original file line number Diff line number Diff line change
Expand Up @@ -1269,7 +1269,7 @@ static int rndis_iw_get_range(struct net_device *dev,
range->max_frag = 2346;

range->max_qual.qual = 100;
range->max_qual.level = 154;
range->max_qual.level = 100;
range->max_qual.updated = IW_QUAL_QUAL_UPDATED
| IW_QUAL_LEVEL_UPDATED
| IW_QUAL_NOISE_INVALID;
Expand Down Expand Up @@ -1712,7 +1712,7 @@ static char *rndis_translate_scan(struct net_device *dev,
devdbg(usbdev, "QUAL %d", le32_to_cpu(bssid->rssi));
iwe.cmd = IWEVQUAL;
iwe.u.qual.qual = level_to_qual(le32_to_cpu(bssid->rssi));
iwe.u.qual.level = le32_to_cpu(bssid->rssi);
iwe.u.qual.level = level_to_qual(le32_to_cpu(bssid->rssi));
iwe.u.qual.updated = IW_QUAL_QUAL_UPDATED
| IW_QUAL_LEVEL_UPDATED
| IW_QUAL_NOISE_INVALID;
Expand Down Expand Up @@ -2400,7 +2400,7 @@ static void rndis_update_wireless_stats(struct work_struct *work)
if (ret == 0) {
memset(&iwstats.qual, 0, sizeof(iwstats.qual));
iwstats.qual.qual = level_to_qual(le32_to_cpu(rssi));
iwstats.qual.level = le32_to_cpu(rssi);
iwstats.qual.level = level_to_qual(le32_to_cpu(rssi));
iwstats.qual.updated = IW_QUAL_QUAL_UPDATED
| IW_QUAL_LEVEL_UPDATED
| IW_QUAL_NOISE_INVALID;
Expand Down

0 comments on commit 69b4443

Please sign in to comment.