Commit 8fc3015d authored by Mordechay Goodstein's avatar Mordechay Goodstein Committed by Luca Coelho

iwlwifi: iwl-dbg-tlv: add info about loading external dbg bin

This helps understand why and what debug capabilities are running.
Signed-off-by: default avatarMordechay Goodstein <mordechay.goodstein@intel.com>
Signed-off-by: default avatarLuca Coelho <luciano.coelho@intel.com>
Link: https://lore.kernel.org/r/iwlwifi.20210802170640.98980f8bd17f.Ifcedf415a545a87cb341a4142085b5723d8cac4d@changeidSigned-off-by: default avatarLuca Coelho <luciano.coelho@intel.com>
parent 16cff731
...@@ -435,13 +435,16 @@ static int iwl_dbg_tlv_parse_bin(struct iwl_trans *trans, const u8 *data, ...@@ -435,13 +435,16 @@ static int iwl_dbg_tlv_parse_bin(struct iwl_trans *trans, const u8 *data,
void iwl_dbg_tlv_load_bin(struct device *dev, struct iwl_trans *trans) void iwl_dbg_tlv_load_bin(struct device *dev, struct iwl_trans *trans)
{ {
const struct firmware *fw; const struct firmware *fw;
const char *yoyo_bin = "iwl-debug-yoyo.bin";
int res; int res;
if (!iwlwifi_mod_params.enable_ini || if (!iwlwifi_mod_params.enable_ini ||
trans->trans_cfg->device_family <= IWL_DEVICE_FAMILY_9000) trans->trans_cfg->device_family <= IWL_DEVICE_FAMILY_9000)
return; return;
res = firmware_request_nowarn(&fw, "iwl-debug-yoyo.bin", dev); res = firmware_request_nowarn(&fw, yoyo_bin, dev);
IWL_DEBUG_FW(trans, "%s %s\n", res ? "didn't load" : "loaded", yoyo_bin);
if (res) if (res)
return; return;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment