Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 122481
b: refs/heads/master
c: d9a1f48
h: refs/heads/master
i:
  122479: f2c98cd
v: v3
  • Loading branch information
herton authored and John W. Linville committed Dec 5, 2008
1 parent 7e37cc0 commit 83d320f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 007e5ddddfed4ba039899754936e89b27d5cb551
refs/heads/master: d9a1f48648edbe99fa432626ce6964a1b58f7281
4 changes: 2 additions & 2 deletions trunk/drivers/net/wireless/rtl818x/rtl8187_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ static int rtl8187_tx(struct ieee80211_hw *dev, struct sk_buff *skb)
hdr->flags = cpu_to_le32(flags);
hdr->len = 0;
hdr->rts_duration = rts_dur;
hdr->retry = cpu_to_le32(info->control.rates[0].count << 8);
hdr->retry = cpu_to_le32((info->control.rates[0].count - 1) << 8);
buf = hdr;

ep = 2;
Expand All @@ -256,7 +256,7 @@ static int rtl8187_tx(struct ieee80211_hw *dev, struct sk_buff *skb)
memset(hdr, 0, sizeof(*hdr));
hdr->flags = cpu_to_le32(flags);
hdr->rts_duration = rts_dur;
hdr->retry = cpu_to_le32(info->control.rates[0].count << 8);
hdr->retry = cpu_to_le32((info->control.rates[0].count - 1) << 8);
hdr->tx_duration =
ieee80211_generic_frame_duration(dev, priv->vif,
skb->len, txrate);
Expand Down

0 comments on commit 83d320f

Please sign in to comment.