Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 111208
b: refs/heads/master
c: 0630335
h: refs/heads/master
v: v3
  • Loading branch information
Bruno Randolf authored and John W. Linville committed Aug 22, 2008
1 parent c2d5573 commit d92434c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 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: edcc25b22f7c328f56e8c129afa1e10c8bacb2ef
refs/heads/master: 06303352d3de02a371ccaec1366a92db5e1d7c30
8 changes: 3 additions & 5 deletions trunk/drivers/net/wireless/ath5k/base.c
Original file line number Diff line number Diff line change
Expand Up @@ -1763,12 +1763,10 @@ ath5k_tasklet_rx(unsigned long data)
rxs.rate_idx = ath5k_hw_to_driver_rix(sc, rs.rs_rate);
rxs.flag |= ath5k_rx_decrypted(sc, ds, skb, &rs);

#if 0 /* add rxs.flag SHORTPRE once it is in mac80211 */
if (rs.rs_rate >= ATH5K_RATE_CODE_2M &&
rs.rs_rate <= ATH5K_RATE_CODE_11M &&
rs.rs_rate & AR5K_SET_SHORT_PREAMBLE)
if (rxs.rate_idx >= 0 && rs.rs_rate ==
sc->curband->bitrates[rxs.rate_idx].hw_value_short)
rxs.flag |= RX_FLAG_SHORTPRE;
#endif

ath5k_debug_dump_skb(sc, skb, "RX ", 0);

/* check beacons in IBSS mode */
Expand Down

0 comments on commit d92434c

Please sign in to comment.