Skip to content

Commit

Permalink
iwlwifi: Don't IWL_WARN on FW reconfiguration
Browse files Browse the repository at this point in the history
IWL_WARN seems excessive here since this can happen during normal
operation. Every time I connect to a new network with 8086:24fd I get
this as KERN_WARNING on the console, which mildly distracts from other
more pressing messages. For example:

    % sudo journalctl _TRANSPORT=kernel | grep -c 'FW already configured'
    403

Signed-off-by: Chris Down <[email protected]>
Cc: Shahar S Matityahu <[email protected]>
Cc: Luca Coelho <[email protected]>
Cc: [email protected]
Cc: [email protected]
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Luca Coelho <[email protected]>
  • Loading branch information
cdown authored and lucacoelho committed Jun 8, 2020
1 parent 33e3fd9 commit 66d0a3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/intel/iwlwifi/fw/dbg.c
Original file line number Diff line number Diff line change
Expand Up @@ -2554,7 +2554,7 @@ int iwl_fw_start_dbg_conf(struct iwl_fw_runtime *fwrt, u8 conf_id)
return -EINVAL;

if (fwrt->dump.conf != FW_DBG_INVALID)
IWL_WARN(fwrt, "FW already configured (%d) - re-configuring\n",
IWL_INFO(fwrt, "FW already configured (%d) - re-configuring\n",
fwrt->dump.conf);

/* Send all HCMDs for configuring the FW debug */
Expand Down

0 comments on commit 66d0a3b

Please sign in to comment.