Skip to content

Commit 9fc515b

Browse files
committed
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>
1 parent 1200b68 commit 9fc515b

File tree

1 file changed

+2
-2
lines changed
  • drivers/net/wireless/intel/iwlwifi/pcie

1 file changed

+2
-2
lines changed

drivers/net/wireless/intel/iwlwifi/pcie/trans.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -732,8 +732,8 @@ static int iwl_pcie_rsa_race_bug_wa(struct iwl_trans *trans)
732732
*/
733733
val = iwl_read_prph(trans, PREG_AUX_BUS_WPROT_0);
734734
if (val & (BIT(1) | BIT(17))) {
735-
IWL_INFO(trans,
736-
"can't access the RSA semaphore it is write protected\n");
735+
IWL_DEBUG_INFO(trans,
736+
"can't access the RSA semaphore it is write protected\n");
737737
return 0;
738738
}
739739

0 commit comments

Comments
 (0)