Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 291162
b: refs/heads/master
c: a9b89e2
h: refs/heads/master
v: v3
  • Loading branch information
Jingjun Wu authored and John W. Linville committed Mar 6, 2012
1 parent de63eab commit bb162a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: da473b61ad9e25e2ac3efb58d95c5b573260c6a8
refs/heads/master: a9b89e2567c743483e6354f64d7a7e3a8c101e9e
4 changes: 4 additions & 0 deletions trunk/drivers/net/wireless/rtlwifi/rtl8192c/dm_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,10 @@ void rtl92c_dm_write_dig(struct ieee80211_hw *hw)
dm_digtable.cur_igvalue, dm_digtable.pre_igvalue,
dm_digtable.backoff_val);

dm_digtable.cur_igvalue += 2;
if (dm_digtable.cur_igvalue > 0x3f)
dm_digtable.cur_igvalue = 0x3f;

if (dm_digtable.pre_igvalue != dm_digtable.cur_igvalue) {
rtl_set_bbreg(hw, ROFDM0_XAAGCCORE1, 0x7f,
dm_digtable.cur_igvalue);
Expand Down

0 comments on commit bb162a7

Please sign in to comment.