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.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-dev.h b/drivers/net/wireless/iwlwifi/iwl-dev.h
index 35d579455c3c..6ba082d6ab16 100644
--- a/drivers/net/wireless/iwlwifi/iwl-dev.h
+++ b/drivers/net/wireless/iwlwifi/iwl-dev.h
@@ -576,6 +576,19 @@ struct iwl_station_entry {
576 struct iwl_hw_key keyinfo; 576 struct iwl_hw_key keyinfo;
577}; 577};
578 578
579/*
580 * iwl_station_priv: Driver's private station information
581 *
582 * When mac80211 creates a station it reserves some space (hw->sta_data_size)
583 * in the structure for use by driver. This structure is places in that
584 * space.
585 *
586 * At the moment use it for the station's rate scaling information.
587 */
588struct iwl_station_priv {
589 struct iwl_lq_sta lq_sta;
590};
591
579/* one for each uCode image (inst/data, boot/init/runtime) */ 592/* one for each uCode image (inst/data, boot/init/runtime) */
580struct fw_desc { 593struct fw_desc {
581 void *v_addr; /* access by driver */ 594 void *v_addr; /* access by driver */