Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 102791
b: refs/heads/master
c: a888d52
h: refs/heads/master
i:
  102789: 4685e7c
  102787: c00fe09
  102783: 6f3fb2d
v: v3
  • Loading branch information
Johannes Berg authored and John W. Linville committed Jun 3, 2008
1 parent 37c2c5f commit 878293e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: ef707b8387c13b6aa3353b5519aa465cbe06034f
refs/heads/master: a888d52d1eda77f08e09d38ac829353200240716
8 changes: 4 additions & 4 deletions trunk/drivers/net/wireless/ath5k/base.c
Original file line number Diff line number Diff line change
Expand Up @@ -1296,7 +1296,7 @@ ath5k_txbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf)
struct ath5k_txq *txq = sc->txq;
struct ath5k_desc *ds = bf->desc;
struct sk_buff *skb = bf->skb;
struct ieee80211_tx_info *info = (void*) skb->cb;
struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
unsigned int pktlen, flags, keyidx = AR5K_TXKEYIX_INVALID;
int ret;

Expand Down Expand Up @@ -1945,7 +1945,7 @@ ath5k_tx_processq(struct ath5k_softc *sc, struct ath5k_txq *txq)
}

skb = bf->skb;
info = (void*) skb->cb;
info = IEEE80211_SKB_CB(skb);
bf->skb = NULL;

pci_unmap_single(sc->pdev, bf->skbaddr, skb->len,
Expand Down Expand Up @@ -2003,7 +2003,7 @@ static int
ath5k_beacon_setup(struct ath5k_softc *sc, struct ath5k_buf *bf)
{
struct sk_buff *skb = bf->skb;
struct ieee80211_tx_info *info = (void*) skb->cb;
struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
struct ath5k_hw *ah = sc->ah;
struct ath5k_desc *ds;
int ret, antenna = 0;
Expand Down Expand Up @@ -2625,7 +2625,7 @@ ath5k_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
{
struct ath5k_softc *sc = hw->priv;
struct ath5k_buf *bf;
struct ieee80211_tx_info *info = (void*) skb->cb;
struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
unsigned long flags;
int hdrlen;
int pad;
Expand Down

0 comments on commit 878293e

Please sign in to comment.