diff options
author | David S. Miller <davem@davemloft.net> | 2016-04-13 17:58:51 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-04-13 17:58:51 -0400 |
commit | 71bbe25d01fa4f35551ff7bffc3e03ddd3e960cd (patch) | |
tree | d32c77e506192ef0ba62a10e92aac410eccaa575 /drivers/net/wireless/intel/iwlwifi/dvm/main.c | |
parent | 7d45a04cbc2683f9552572850f1c711d9b96dd26 (diff) | |
parent | 57fbcce37be7c1d2622b56587c10ade00e96afa3 (diff) |
Merge tag 'mac80211-next-for-davem-2016-04-13' of git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next
Johannes Berg says:
====================
To synchronize with Kalle, here's just a big change that affects
all drivers - removing the duplicated enum ieee80211_band and
replacing it by enum nl80211_band. On top of that, just a small
documentation update.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless/intel/iwlwifi/dvm/main.c')
-rw-r--r-- | drivers/net/wireless/intel/iwlwifi/dvm/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/dvm/main.c b/drivers/net/wireless/intel/iwlwifi/dvm/main.c index 614716251c39..37b32a6f60fd 100644 --- a/drivers/net/wireless/intel/iwlwifi/dvm/main.c +++ b/drivers/net/wireless/intel/iwlwifi/dvm/main.c | |||
@@ -262,7 +262,7 @@ int iwlagn_send_beacon_cmd(struct iwl_priv *priv) | |||
262 | rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant); | 262 | rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant); |
263 | 263 | ||
264 | /* In mac80211, rates for 5 GHz start at 0 */ | 264 | /* In mac80211, rates for 5 GHz start at 0 */ |
265 | if (info->band == IEEE80211_BAND_5GHZ) | 265 | if (info->band == NL80211_BAND_5GHZ) |
266 | rate += IWL_FIRST_OFDM_RATE; | 266 | rate += IWL_FIRST_OFDM_RATE; |
267 | else if (rate >= IWL_FIRST_CCK_RATE && rate <= IWL_LAST_CCK_RATE) | 267 | else if (rate >= IWL_FIRST_CCK_RATE && rate <= IWL_LAST_CCK_RATE) |
268 | rate_flags |= RATE_MCS_CCK_MSK; | 268 | rate_flags |= RATE_MCS_CCK_MSK; |
@@ -1117,7 +1117,7 @@ static int iwl_init_drv(struct iwl_priv *priv) | |||
1117 | 1117 | ||
1118 | INIT_LIST_HEAD(&priv->calib_results); | 1118 | INIT_LIST_HEAD(&priv->calib_results); |
1119 | 1119 | ||
1120 | priv->band = IEEE80211_BAND_2GHZ; | 1120 | priv->band = NL80211_BAND_2GHZ; |
1121 | 1121 | ||
1122 | priv->plcp_delta_threshold = priv->lib->plcp_delta_threshold; | 1122 | priv->plcp_delta_threshold = priv->lib->plcp_delta_threshold; |
1123 | 1123 | ||