diff options
author | Ariej Marjieh <ariej.marjieh@intel.com> | 2014-02-01 23:00:01 -0500 |
---|---|---|
committer | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2014-02-06 14:12:26 -0500 |
commit | 3281bd4c436138351b65dff3f7ccfddeb5f02d13 (patch) | |
tree | 013a214df37862ee8d4fd1c75d10aec9dad7683c /drivers/net/wireless | |
parent | 01a9ca510ba4413895d4add6f26665d6c37a5413 (diff) |
iwlwifi: change number of PAPD groups in PHY DB
The number of the PAPD group was increased in new devices.
Since we might now get empty entries on older devices, don't
warn if an entry is empty.
Signed-off-by: Ariej Marjieh <ariej.marjieh@intel.com>
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-phy-db.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-phy-db.c b/drivers/net/wireless/iwlwifi/iwl-phy-db.c index fa77d63a277a..b761ac4822a3 100644 --- a/drivers/net/wireless/iwlwifi/iwl-phy-db.c +++ b/drivers/net/wireless/iwlwifi/iwl-phy-db.c | |||
@@ -72,7 +72,7 @@ | |||
72 | #include "iwl-trans.h" | 72 | #include "iwl-trans.h" |
73 | 73 | ||
74 | #define CHANNEL_NUM_SIZE 4 /* num of channels in calib_ch size */ | 74 | #define CHANNEL_NUM_SIZE 4 /* num of channels in calib_ch size */ |
75 | #define IWL_NUM_PAPD_CH_GROUPS 4 | 75 | #define IWL_NUM_PAPD_CH_GROUPS 7 |
76 | #define IWL_NUM_TXP_CH_GROUPS 9 | 76 | #define IWL_NUM_TXP_CH_GROUPS 9 |
77 | 77 | ||
78 | struct iwl_phy_db_entry { | 78 | struct iwl_phy_db_entry { |
@@ -383,7 +383,7 @@ static int iwl_phy_db_send_all_channel_groups( | |||
383 | if (!entry) | 383 | if (!entry) |
384 | return -EINVAL; | 384 | return -EINVAL; |
385 | 385 | ||
386 | if (WARN_ON_ONCE(!entry->size)) | 386 | if (!entry->size) |
387 | continue; | 387 | continue; |
388 | 388 | ||
389 | /* Send the requested PHY DB section */ | 389 | /* Send the requested PHY DB section */ |