Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5bfe6f53 authored by Emmanuel Grumbach's avatar Emmanuel Grumbach
Browse files

iwlwifi: mvm: update layout of firmware error dump



The memory was not zeroed - fix that. Also update the
iwl_fw_error_dump_info structure.

Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
parent 655e6d6d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -686,7 +686,7 @@ static void iwl_mvm_fw_error_dump(struct iwl_mvm *mvm)
	if (trans_len)
		file_len += trans_len;

	dump_file = vmalloc(file_len);
	dump_file = vzalloc(file_len);
	if (!dump_file)
		return;