Commit 3779db10 authored by Johannes Berg's avatar Johannes Berg Committed by Reinette Chatre

iwlwifi: remove priv->mac_addr

This variable is now no longer used, so it
can be removed completely.
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
Signed-off-by: default avatarReinette Chatre <reinette.chatre@intel.com>
parent f8525e55
...@@ -1907,7 +1907,8 @@ int iwl_mac_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif) ...@@ -1907,7 +1907,8 @@ int iwl_mac_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
struct iwl_priv *priv = hw->priv; struct iwl_priv *priv = hw->priv;
int err = 0; int err = 0;
IWL_DEBUG_MAC80211(priv, "enter: type %d\n", vif->type); IWL_DEBUG_MAC80211(priv, "enter: type %d, addr %pM\n",
vif->type, vif->addr);
mutex_lock(&priv->mutex); mutex_lock(&priv->mutex);
...@@ -1925,9 +1926,6 @@ int iwl_mac_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif) ...@@ -1925,9 +1926,6 @@ int iwl_mac_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
priv->vif = vif; priv->vif = vif;
priv->iw_mode = vif->type; priv->iw_mode = vif->type;
IWL_DEBUG_MAC80211(priv, "Set %pM\n", vif->addr);
memcpy(priv->mac_addr, vif->addr, ETH_ALEN);
err = iwl_set_mode(priv, vif); err = iwl_set_mode(priv, vif);
if (err) if (err)
goto out_err; goto out_err;
......
...@@ -1232,7 +1232,6 @@ struct iwl_priv { ...@@ -1232,7 +1232,6 @@ struct iwl_priv {
/* context information */ /* context information */
u8 bssid[ETH_ALEN]; /* used only on 3945 but filled by core */ u8 bssid[ETH_ALEN]; /* used only on 3945 but filled by core */
u8 mac_addr[ETH_ALEN];
/* station table variables */ /* station table variables */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment