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

Commit 07855056 authored by Wang Long's avatar Wang Long Committed by Tony Luck
Browse files

ramoops: make it possible to change mem_type param.



If we set ramoops.mem_type=1 in command line, the current
code can not change mem_type to 1, because it is assigned
to 0 in function ramoops_register_dummy.

This patch make it possible to change mem_type parameter
in command line.

Signed-off-by: default avatarWang Long <long.wanglong@huawei.com>
Acked-by: default avatarTony Lindgren <tony@atomide.com>
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent e036bd33
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -622,7 +622,7 @@ static void ramoops_register_dummy(void)

	dummy_data->mem_size = mem_size;
	dummy_data->mem_address = mem_address;
	dummy_data->mem_type = 0;
	dummy_data->mem_type = mem_type;
	dummy_data->record_size = record_size;
	dummy_data->console_size = ramoops_console_size;
	dummy_data->ftrace_size = ramoops_ftrace_size;