Skip to content

Commit

Permalink
iwlwifi: yoyo: don't print failure if debug firmware is missing
Browse files Browse the repository at this point in the history
Missing this firmware is not fatal, my wifi card still works. Even more,
I couldn't find any documentation what it is or where to get it. So, I
don't think the users should be notified if it is missing. If you browse
the net, you see the message is present is in quite some logs. Better
remove it.

Signed-off-by: Wolfram Sang <[email protected]>
Signed-off-by: Kalle Valo <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
  • Loading branch information
wsakernel authored and Kalle Valo committed Aug 2, 2020
1 parent 7b080e0 commit 3f4600d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.c
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ void iwl_dbg_tlv_load_bin(struct device *dev, struct iwl_trans *trans)
if (!iwlwifi_mod_params.enable_ini)
return;

res = request_firmware(&fw, "iwl-debug-yoyo.bin", dev);
res = firmware_request_nowarn(&fw, "iwl-debug-yoyo.bin", dev);
if (res)
return;

Expand Down

0 comments on commit 3f4600d

Please sign in to comment.