mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 02:01:29 +00:00
iwlwifi: set MAC address in RXON from interface
When we do not have an interface, priv->mac_addr is all zeroes, so the memcpy() is not useful as the RXON buffer has been cleared previously. Therefore, use the interface's address that we are setting up the RXON for, if available. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
This commit is contained in:
parent
30eabc1736
commit
7684c40831
@ -979,7 +979,10 @@ void iwl_connection_init_rx_config(struct iwl_priv *priv,
|
||||
/* clear both MIX and PURE40 mode flag */
|
||||
priv->staging_rxon.flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED |
|
||||
RXON_FLG_CHANNEL_MODE_PURE_40);
|
||||
memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
|
||||
|
||||
if (vif)
|
||||
memcpy(priv->staging_rxon.node_addr, vif->addr, ETH_ALEN);
|
||||
|
||||
priv->staging_rxon.ofdm_ht_single_stream_basic_rates = 0xff;
|
||||
priv->staging_rxon.ofdm_ht_dual_stream_basic_rates = 0xff;
|
||||
priv->staging_rxon.ofdm_ht_triple_stream_basic_rates = 0xff;
|
||||
|
Loading…
Reference in New Issue
Block a user