aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt2x00lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00lib.h')
-rw-r--r--drivers/net/wireless/rt2x00/rt2x00lib.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00lib.h b/drivers/net/wireless/rt2x00/rt2x00lib.h
index fccaffde6f55..5e8df250e50d 100644
--- a/drivers/net/wireless/rt2x00/rt2x00lib.h
+++ b/drivers/net/wireless/rt2x00/rt2x00lib.h
@@ -282,7 +282,8 @@ static inline void rt2x00debug_update_crypto(struct rt2x00_dev *rt2x00dev,
282enum cipher rt2x00crypto_key_to_cipher(struct ieee80211_key_conf *key); 282enum cipher rt2x00crypto_key_to_cipher(struct ieee80211_key_conf *key);
283void rt2x00crypto_create_tx_descriptor(struct queue_entry *entry, 283void rt2x00crypto_create_tx_descriptor(struct queue_entry *entry,
284 struct txentry_desc *txdesc); 284 struct txentry_desc *txdesc);
285unsigned int rt2x00crypto_tx_overhead(struct ieee80211_tx_info *tx_info); 285unsigned int rt2x00crypto_tx_overhead(struct rt2x00_dev *rt2x00dev,
286 struct sk_buff *skb);
286void rt2x00crypto_tx_copy_iv(struct sk_buff *skb, unsigned int iv_len); 287void rt2x00crypto_tx_copy_iv(struct sk_buff *skb, unsigned int iv_len);
287void rt2x00crypto_tx_remove_iv(struct sk_buff *skb, unsigned int iv_len); 288void rt2x00crypto_tx_remove_iv(struct sk_buff *skb, unsigned int iv_len);
288void rt2x00crypto_tx_insert_iv(struct sk_buff *skb); 289void rt2x00crypto_tx_insert_iv(struct sk_buff *skb);
@@ -300,7 +301,8 @@ static inline void rt2x00crypto_create_tx_descriptor(struct queue_entry *entry,
300{ 301{
301} 302}
302 303
303static inline unsigned int rt2x00crypto_tx_overhead(struct ieee80211_tx_info *tx_info) 304static inline unsigned int rt2x00crypto_tx_overhead(struct rt2x00_dev *rt2x00dev,
305 struct sk_buff *skb)
304{ 306{
305 return 0; 307 return 0;
306} 308}