aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmmanuel Grumbach <emmanuel.grumbach@intel.com>2016-03-10 06:07:17 -0500
committerEmmanuel Grumbach <emmanuel.grumbach@intel.com>2016-03-20 07:20:04 -0400
commit9fc515bc9e735c10cd327f05c20f5ef69474188d (patch)
tree33ce2731e4611fbb73d6404b0201614a36012c6c
parent1200b6809dfd9d73bc4c7db76d288c35fa4b2ebe (diff)
iwlwifi: pcie: lower the debug level for RSA semaphore access
IWL_INFO is not an error but still printed by default. "can't access the RSA semaphore it is write protected" seems worrisome but it is not really a problem. CC: <stable@vger.kernel.org> [4.1+] Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
-rw-r--r--drivers/net/wireless/intel/iwlwifi/pcie/trans.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/pcie/trans.c b/drivers/net/wireless/intel/iwlwifi/pcie/trans.c
index eb39c7e09781..b2b79354d5c0 100644
--- a/drivers/net/wireless/intel/iwlwifi/pcie/trans.c
+++ b/drivers/net/wireless/intel/iwlwifi/pcie/trans.c
@@ -732,8 +732,8 @@ static int iwl_pcie_rsa_race_bug_wa(struct iwl_trans *trans)
732 */ 732 */
733 val = iwl_read_prph(trans, PREG_AUX_BUS_WPROT_0); 733 val = iwl_read_prph(trans, PREG_AUX_BUS_WPROT_0);
734 if (val & (BIT(1) | BIT(17))) { 734 if (val & (BIT(1) | BIT(17))) {
735 IWL_INFO(trans, 735 IWL_DEBUG_INFO(trans,
736 "can't access the RSA semaphore it is write protected\n"); 736 "can't access the RSA semaphore it is write protected\n");
737 return 0; 737 return 0;
738 } 738 }
739 739