]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
wifi: iwlwifi: reduce the log level of firmware debug buffer size mismatch
authorEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Fri, 15 May 2026 12:09:39 +0000 (15:09 +0300)
committerMiri Korenblit <miriam.rachel.korenblit@intel.com>
Tue, 26 May 2026 12:17:12 +0000 (15:17 +0300)
This is not really an error and we can safely reduce the log level to
INFO.

Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Link: https://patch.msgid.link/20260515150751.36a772e925aa.I0f8db3099bd07e72ee007b322c0f85102f0550f9@changeid
Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
drivers/net/wireless/intel/iwlwifi/pcie/gen1_2/trans.c

index e3603571bdd952759dc771fb5483d9b3b946616d..50342604491de72beb625a1a03acb46775d108ae 100644 (file)
@@ -141,10 +141,10 @@ static void iwl_pcie_alloc_fw_monitor_block(struct iwl_trans *trans,
                return;
 
        if (power != max_power)
-               IWL_ERR(trans,
-                       "Sorry - debug buffer is only %luK while you requested %luK\n",
-                       (unsigned long)BIT(power - 10),
-                       (unsigned long)BIT(max_power - 10));
+               IWL_INFO(trans,
+                        "Sorry - debug buffer is only %luK while you requested %luK\n",
+                        (unsigned long)BIT(power - 10),
+                        (unsigned long)BIT(max_power - 10));
 
        fw_mon->block = block;
        fw_mon->physical = physical;