Эх сурвалжийг харах

iwlwifi: store default station flags in context

Since the default context is initialised to zero,
and the default flags are zero, no more code is
needed to initialise them right now, but another
context can have different default flags.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Johannes Berg 15 жил өмнө
parent
commit
770e13bdda

+ 2 - 0
drivers/net/wireless/iwlwifi/iwl-dev.h

@@ -1137,6 +1137,8 @@ struct iwl_rxon_context {
 
 
 	struct iwl_wep_key wep_keys[WEP_KEYS_MAX];
 	struct iwl_wep_key wep_keys[WEP_KEYS_MAX];
 	u8 key_mapping_keys;
 	u8 key_mapping_keys;
+
+	__le32 station_flags;
 };
 };
 
 
 struct iwl_priv {
 struct iwl_priv {

+ 1 - 1
drivers/net/wireless/iwlwifi/iwl-sta.c

@@ -289,7 +289,7 @@ static u8 iwl_prep_station(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
 	memcpy(station->sta.sta.addr, addr, ETH_ALEN);
 	memcpy(station->sta.sta.addr, addr, ETH_ALEN);
 	station->sta.mode = 0;
 	station->sta.mode = 0;
 	station->sta.sta.sta_id = sta_id;
 	station->sta.sta.sta_id = sta_id;
-	station->sta.station_flags = 0;
+	station->sta.station_flags = ctx->station_flags;
 	station->ctxid = ctx->ctxid;
 	station->ctxid = ctx->ctxid;
 
 
 	/*
 	/*