Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Unified Diff: chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/hw-ops.h

Issue 6393011: ath9k: Add pktlog support Base URL: ssh://git@gitrw.chromium.org:9222/kernel.git@master
Patch Set: add missing files Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/hw-ops.h
diff --git a/chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/hw-ops.h b/chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/hw-ops.h
index ffecbadaea4a592450da48c3e849b9bdd1961b07..f68cb48026a8a490ed8c4b6eac748276be26520d 100644
--- a/chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/hw-ops.h
+++ b/chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/hw-ops.h
@@ -67,9 +67,10 @@ static inline void ath9k_hw_filltxdesc(struct ath_hw *ah, void *ds, u32 seglen,
}
static inline int ath9k_hw_txprocdesc(struct ath_hw *ah, void *ds,
- struct ath_tx_status *ts)
+ struct ath_tx_status *ts,
+ void *txs_desc)
{
- return ath9k_hw_ops(ah)->proc_txdesc(ah, ds, ts);
+ return ath9k_hw_ops(ah)->proc_txdesc(ah, ds, ts, txs_desc);
}
static inline void ath9k_hw_set11n_txdesc(struct ath_hw *ah, void *ds,

Powered by Google App Engine
This is Rietveld 408576698