diff options
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-agn.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-agn.h | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.h b/drivers/net/wireless/iwlwifi/iwl-agn.h index b477336ff53a..fe33fe8aa418 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn.h +++ b/drivers/net/wireless/iwlwifi/iwl-agn.h | |||
@@ -139,11 +139,6 @@ void iwlagn_set_wr_ptrs(struct iwl_priv *priv, | |||
139 | void iwlagn_tx_queue_set_status(struct iwl_priv *priv, | 139 | void iwlagn_tx_queue_set_status(struct iwl_priv *priv, |
140 | struct iwl_tx_queue *txq, | 140 | struct iwl_tx_queue *txq, |
141 | int tx_fifo_id, int scd_retry); | 141 | int tx_fifo_id, int scd_retry); |
142 | void iwlagn_txq_update_byte_cnt_tbl(struct iwl_priv *priv, | ||
143 | struct iwl_tx_queue *txq, | ||
144 | u16 byte_cnt); | ||
145 | void iwlagn_txq_inval_byte_cnt_tbl(struct iwl_priv *priv, | ||
146 | struct iwl_tx_queue *txq); | ||
147 | void iwlagn_txq_set_sched(struct iwl_priv *priv, u32 mask); | 142 | void iwlagn_txq_set_sched(struct iwl_priv *priv, u32 mask); |
148 | void iwl_free_tfds_in_queue(struct iwl_priv *priv, | 143 | void iwl_free_tfds_in_queue(struct iwl_priv *priv, |
149 | int sta_id, int tid, int freed); | 144 | int sta_id, int tid, int freed); |
@@ -344,5 +339,22 @@ iwlagn_wait_notification(struct iwl_priv *priv, | |||
344 | void __releases(wait_entry) | 339 | void __releases(wait_entry) |
345 | iwlagn_remove_notification(struct iwl_priv *priv, | 340 | iwlagn_remove_notification(struct iwl_priv *priv, |
346 | struct iwl_notification_wait *wait_entry); | 341 | struct iwl_notification_wait *wait_entry); |
342 | extern int iwlagn_init_alive_start(struct iwl_priv *priv); | ||
343 | extern int iwl_alive_start(struct iwl_priv *priv); | ||
344 | /* svtool */ | ||
345 | #ifdef CONFIG_IWLWIFI_DEVICE_SVTOOL | ||
346 | extern int iwl_testmode_cmd(struct ieee80211_hw *hw, void *data, int len); | ||
347 | extern void iwl_testmode_init(struct iwl_priv *priv); | ||
348 | #else | ||
349 | static inline | ||
350 | int iwl_testmode_cmd(struct ieee80211_hw *hw, void *data, int len) | ||
351 | { | ||
352 | return -ENOSYS; | ||
353 | } | ||
354 | static inline | ||
355 | void iwl_testmode_init(struct iwl_priv *priv) | ||
356 | { | ||
357 | } | ||
358 | #endif | ||
347 | 359 | ||
348 | #endif /* __iwl_agn_h__ */ | 360 | #endif /* __iwl_agn_h__ */ |