Commit e8b61560 authored by rotem saado's avatar rotem saado Committed by Luca Coelho
Browse files

iwlwifi: yoyo: don't block dumping internal memory when not in SRAM mode



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: default avatarRotem Saado <rotem.saado@intel.com>
Signed-off-by: default avatarLuca Coelho <luciano.coelho@intel.com>
parent f4ed93a1
Loading
Loading
Loading
Loading
+1 −7
Original line number Diff line number Diff line
@@ -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)