iwlwifi: mvm: Use IWL_INFO in fw_reset_handshake()
authorRavi Darsi <ravi.darsi@intel.com>
Wed, 31 Mar 2021 09:14:52 +0000 (12:14 +0300)
committerLuca Coelho <luciano.coelho@intel.com>
Wed, 14 Apr 2021 09:07:18 +0000 (12:07 +0300)
Debug message "firmware didn't ACK the reset - continue anyway\n"
in fw_reset_handshake() is classified as error, however this is not
an error as it is ignored. So, change it to info message for proper
classification of debug messages.

Signed-off-by: Ravi Darsi <ravi.darsi@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Link: https://lore.kernel.org/r/iwlwifi.20210331121101.449b3092c330.I515edcc41913ca7fbe4a4de923671d120d5618c6@changeid
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c

index 94ffc1a..9d94c47 100644 (file)
@@ -108,8 +108,8 @@ static void iwl_trans_pcie_fw_reset_handshake(struct iwl_trans *trans)
        ret = wait_event_timeout(trans_pcie->fw_reset_waitq,
                                 trans_pcie->fw_reset_done, FW_RESET_TIMEOUT);
        if (!ret)
-               IWL_ERR(trans,
-                       "firmware didn't ACK the reset - continue anyway\n");
+               IWL_INFO(trans,
+                        "firmware didn't ACK the reset - continue anyway\n");
 }
 
 void _iwl_trans_pcie_gen2_stop_device(struct iwl_trans *trans)