summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/ath/ath10k/core.h
diff options
context:
space:
mode:
authorMichal Kazior <michal.kazior@tieto.com>2015-11-18 06:59:22 +0100
committerKalle Valo <kvalo@qca.qualcomm.com>2015-11-23 17:12:30 +0200
commit609db229b42fda3f7d3a21fe54084983bc28dfae (patch)
tree56696d892c1b47d3b55f11c0bb54b594b02db2be /drivers/net/wireless/ath/ath10k/core.h
parentd668dbaebe430af8843ca6e83c1e44fd1efb20aa (diff)
downloadlwn-609db229b42fda3f7d3a21fe54084983bc28dfae.tar.gz
lwn-609db229b42fda3f7d3a21fe54084983bc28dfae.zip
ath10k: replace vdev_id and tid in skb cb
This prepares the driver for future ieee80211_txq and wake_tx_queue() support. Signed-off-by: Michal Kazior <michal.kazior@tieto.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath10k/core.h')
-rw-r--r--drivers/net/wireless/ath/ath10k/core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath10k/core.h b/drivers/net/wireless/ath/ath10k/core.h
index 933ffe3c2855..ccd02a7f847b 100644
--- a/drivers/net/wireless/ath/ath10k/core.h
+++ b/drivers/net/wireless/ath/ath10k/core.h
@@ -86,16 +86,16 @@ enum ath10k_skb_flags {
ATH10K_SKB_F_DTIM_ZERO = BIT(1),
ATH10K_SKB_F_DELIVER_CAB = BIT(2),
ATH10K_SKB_F_MGMT = BIT(3),
+ ATH10K_SKB_F_QOS = BIT(4),
};
struct ath10k_skb_cb {
dma_addr_t paddr;
u8 flags;
u8 eid;
- u8 vdev_id;
+ struct ieee80211_vif *vif;
struct {
- u8 tid;
struct ath10k_htt_txbuf *txbuf;
u32 txbuf_paddr;
} __packed htt;