Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 203796
b: refs/heads/master
c: 28eb3e5
h: refs/heads/master
v: v3
  • Loading branch information
John W. Linville committed Jul 26, 2010
1 parent 7b7a72d commit 5b30ed0
Show file tree
Hide file tree
Showing 2 changed files with 5 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: 8b73fb8e29e9ae0458d36cc0dc25e2717587dfd4
refs/heads/master: 28eb3e5acfddf1e1c8892df9901e4f32f7f537eb
5 changes: 4 additions & 1 deletion trunk/drivers/net/wireless/rtl818x/rtl8180_rtl8225.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@ static void rtl8225_write(struct ieee80211_hw *dev, u8 addr, u16 data)
udelay(10);

for (i = 15; i >= 0; i--) {
u16 reg = reg80 | !!(bangdata & (1 << i));
u16 reg = reg80;

if (bangdata & (1 << i))
reg |= 1;

if (i & 1)
rtl818x_iowrite16(priv, &priv->map->RFPinsOutput, reg);
Expand Down

0 comments on commit 5b30ed0

Please sign in to comment.