Commit 4599c667 authored by Nikolas Nyby's avatar Nikolas Nyby Committed by Thomas Gleixner

x86/crash: Remove unnecessary comparison

The ret comparison and return are unnecessary as of commit f296f263
("x86/kexec: Remove walk_iomem_res() call with GART type")

elf_header_exclude_ranges() returns ret in any case, with or without this
comparison.

[ tglx: Use a proper commit reference instead of full SHA ]
Signed-off-by: default avatarNikolas Nyby <nikolas@gnu.org>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20190724041337.8346-1-nikolas@gnu.org
parent bdd50d74
...@@ -225,8 +225,6 @@ static int elf_header_exclude_ranges(struct crash_mem *cmem) ...@@ -225,8 +225,6 @@ static int elf_header_exclude_ranges(struct crash_mem *cmem)
if (crashk_low_res.end) { if (crashk_low_res.end) {
ret = crash_exclude_mem_range(cmem, crashk_low_res.start, ret = crash_exclude_mem_range(cmem, crashk_low_res.start,
crashk_low_res.end); crashk_low_res.end);
if (ret)
return ret;
} }
return ret; return ret;
......
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