iwlwifi: yoyo: don't block dumping internal memory when not in SRAM mode
authorrotem saado <rotem.saado@intel.com>
Wed, 13 Nov 2019 12:20:11 +0000 (14:20 +0200)
committerLuca Coelho <luciano.coelho@intel.com>
Fri, 27 Mar 2020 06:12:51 +0000 (08:12 +0200)
When we have an assert during D3 we want to dump the internal
buffer memory even if are we working in DRAM debug mode.  We should not
block dumping it.

Change-Id: I69aad2d4904c4f8bb653c61e8781a2e07780054f
Signed-off-by: Rotem Saado <rotem.saado@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
drivers/net/wireless/intel/iwlwifi/fw/dbg.c

index d5dda93..1746a0c 100644 (file)
@@ -1737,13 +1737,7 @@ iwl_dump_ini_mon_smem_get_size(struct iwl_fw_runtime *fwrt,
                               struct iwl_dump_ini_region_data *reg_data)
 {
        struct iwl_fw_ini_region_tlv *reg = (void *)reg_data->reg_tlv->data;
-       struct iwl_fw_ini_allocation_tlv *fw_mon_cfg;
-       u32 alloc_id = le32_to_cpu(reg->internal_buffer.alloc_id), size;
-
-       fw_mon_cfg = &fwrt->trans->dbg.fw_mon_cfg[alloc_id];
-       if (le32_to_cpu(fw_mon_cfg->buf_location) !=
-           IWL_FW_INI_LOCATION_SRAM_PATH)
-               return 0;
+       u32 size;
 
        size = le32_to_cpu(reg->internal_buffer.size);
        if (!size)