summaryrefslogtreecommitdiff
path: root/kexec
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2013-09-17 10:37:10 +0200
committerSimon Horman <horms@verge.net.au>2013-09-19 13:55:38 -0700
commit0b4dafc521a80a48c6c83a106b2cc76c5f733cd5 (patch)
treed0c86a0526e99dbd8771f7c2ab3359ffb7ace3c8 /kexec
parent4adb9f139423e97bca3922c181d9fb6c3913c7ff (diff)
cris: is_crashkernel_mem_reserved() should return 0
Cris doesn't have support for crash kernels yet. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'kexec')
-rw-r--r--kexec/arch/cris/kexec-cris.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kexec/arch/cris/kexec-cris.c b/kexec/arch/cris/kexec-cris.c
index 67fd156..4ac2f89 100644
--- a/kexec/arch/cris/kexec-cris.c
+++ b/kexec/arch/cris/kexec-cris.c
@@ -74,7 +74,7 @@ void arch_update_purgatory(struct kexec_info *UNUSED(info))
int is_crashkernel_mem_reserved(void)
{
- return 1;
+ return 0;
}
unsigned long virt_to_phys(unsigned long addr)