aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/iwlwifi/iwl-dev.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-dev.h')
-rw-r--r--drivers/net/wireless/iwlwifi/iwl-dev.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-dev.h b/drivers/net/wireless/iwlwifi/iwl-dev.h
index 1d80ad79114d..07eff75786b4 100644
--- a/drivers/net/wireless/iwlwifi/iwl-dev.h
+++ b/drivers/net/wireless/iwlwifi/iwl-dev.h
@@ -401,7 +401,7 @@ struct iwl_rx_queue {
401 401
402#ifdef CONFIG_IWL4965_HT 402#ifdef CONFIG_IWL4965_HT
403/** 403/**
404 * struct iwl4965_ht_agg -- aggregation status while waiting for block-ack 404 * struct iwl_ht_agg -- aggregation status while waiting for block-ack
405 * @txq_id: Tx queue used for Tx attempt 405 * @txq_id: Tx queue used for Tx attempt
406 * @frame_count: # frames attempted by Tx command 406 * @frame_count: # frames attempted by Tx command
407 * @wait_for_ba: Expect block-ack before next Tx reply 407 * @wait_for_ba: Expect block-ack before next Tx reply
@@ -414,7 +414,7 @@ struct iwl_rx_queue {
414 * for block ack (REPLY_COMPRESSED_BA). This struct stores tx reply info 414 * for block ack (REPLY_COMPRESSED_BA). This struct stores tx reply info
415 * until block ack arrives. 415 * until block ack arrives.
416 */ 416 */
417struct iwl4965_ht_agg { 417struct iwl_ht_agg {
418 u16 txq_id; 418 u16 txq_id;
419 u16 frame_count; 419 u16 frame_count;
420 u16 wait_for_ba; 420 u16 wait_for_ba;
@@ -430,15 +430,15 @@ struct iwl4965_ht_agg {
430 430
431#endif /* CONFIG_IWL4965_HT */ 431#endif /* CONFIG_IWL4965_HT */
432 432
433struct iwl4965_tid_data { 433struct iwl_tid_data {
434 u16 seq_number; 434 u16 seq_number;
435 u16 tfds_in_queue; 435 u16 tfds_in_queue;
436#ifdef CONFIG_IWL4965_HT 436#ifdef CONFIG_IWL4965_HT
437 struct iwl4965_ht_agg agg; 437 struct iwl_ht_agg agg;
438#endif /* CONFIG_IWL4965_HT */ 438#endif /* CONFIG_IWL4965_HT */
439}; 439};
440 440
441struct iwl4965_hw_key { 441struct iwl_hw_key {
442 enum ieee80211_key_alg alg; 442 enum ieee80211_key_alg alg;
443 int keylen; 443 int keylen;
444 u8 keyidx; 444 u8 keyidx;
@@ -510,12 +510,12 @@ struct iwl4965_qos_info {
510#define STA_PS_STATUS_WAKE 0 510#define STA_PS_STATUS_WAKE 0
511#define STA_PS_STATUS_SLEEP 1 511#define STA_PS_STATUS_SLEEP 1
512 512
513struct iwl4965_station_entry { 513struct iwl_station_entry {
514 struct iwl4965_addsta_cmd sta; 514 struct iwl4965_addsta_cmd sta;
515 struct iwl4965_tid_data tid[MAX_TID_COUNT]; 515 struct iwl_tid_data tid[MAX_TID_COUNT];
516 u8 used; 516 u8 used;
517 u8 ps_status; 517 u8 ps_status;
518 struct iwl4965_hw_key keyinfo; 518 struct iwl_hw_key keyinfo;
519}; 519};
520 520
521/* one for each uCode image (inst/data, boot/init/runtime) */ 521/* one for each uCode image (inst/data, boot/init/runtime) */
@@ -1107,7 +1107,7 @@ struct iwl_priv {
1107 /*station table variables */ 1107 /*station table variables */
1108 spinlock_t sta_lock; 1108 spinlock_t sta_lock;
1109 int num_stations; 1109 int num_stations;
1110 struct iwl4965_station_entry stations[IWL_STATION_COUNT]; 1110 struct iwl_station_entry stations[IWL_STATION_COUNT];
1111 struct iwl_wep_key wep_keys[WEP_KEYS_MAX]; 1111 struct iwl_wep_key wep_keys[WEP_KEYS_MAX];
1112 u8 default_wep_key; 1112 u8 default_wep_key;
1113 u8 key_mapping_key; 1113 u8 key_mapping_key;