Commit 902d6364 authored by Jisheng Zhang's avatar Jisheng Zhang Committed by Palmer Dabbelt

riscv: mm: init: remove unnecessary "#ifdef CONFIG_CRASH_DUMP"

The is_kdump_kernel() returns false for !CRASH_DUMP case, so we don't
need the #ifdef CONFIG_CRASH_DUMP for is_kdump_kernel() checking.
Signed-off-by: default avatarJisheng Zhang <jszhang@kernel.org>
Reviewed-by: default avatarAlexandre Ghiti <alex@ghiti.fr>
Signed-off-by: default avatarPalmer Dabbelt <palmer@rivosinc.com>
parent f1b744f6
...@@ -791,12 +791,10 @@ static void __init reserve_crashkernel(void) ...@@ -791,12 +791,10 @@ static void __init reserve_crashkernel(void)
* since it doesn't make much sense and we have limited memory * since it doesn't make much sense and we have limited memory
* resources. * resources.
*/ */
#ifdef CONFIG_CRASH_DUMP
if (is_kdump_kernel()) { if (is_kdump_kernel()) {
pr_info("crashkernel: ignoring reservation request\n"); pr_info("crashkernel: ignoring reservation request\n");
return; return;
} }
#endif
ret = parse_crashkernel(boot_command_line, memblock_phys_mem_size(), ret = parse_crashkernel(boot_command_line, memblock_phys_mem_size(),
&crash_size, &crash_base); &crash_size, &crash_base);
......
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