diff options
author | Johannes Berg <johannes.berg@intel.com> | 2010-04-29 11:43:10 (GMT) |
---|---|---|
committer | Reinette Chatre <reinette.chatre@intel.com> | 2010-05-10 22:09:01 (GMT) |
commit | 59c02b4149183cb53d95b1ce3a8188cbee63f57f (patch) | |
tree | aae6c11282810b6744f4d306c80e8c3e2b5f76d3 | |
parent | ca3c1f59dc469e19431c683383d8205397595806 (diff) | |
download | linux-fsl-qoriq-59c02b4149183cb53d95b1ce3a8188cbee63f57f.tar.xz |
iwlwifi: note that priv->bssid is used only by 3945
The bssid member of struct iwl_priv is now
only used by 3945 code, so note that. It
shouldn't be used by any other code in the
future.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-dev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-dev.h b/drivers/net/wireless/iwlwifi/iwl-dev.h index bcdb663..46571f7 100644 --- a/drivers/net/wireless/iwlwifi/iwl-dev.h +++ b/drivers/net/wireless/iwlwifi/iwl-dev.h @@ -1210,7 +1210,7 @@ struct iwl_priv { #endif /* context information */ - u8 bssid[ETH_ALEN]; + u8 bssid[ETH_ALEN]; /* used only on 3945 but filled by core */ u8 mac_addr[ETH_ALEN]; /*station table variables */ |