From bf2083050d7879390ddedbd64e431cf167854a34 Mon Sep 17 00:00:00 2001 From: "akpm@osdl.org" Date: Mon, 9 Jan 2006 20:51:45 -0800 Subject: [PATCH] Kdump: powerpc and s390 build failure fix ) From: Vivek Goyal crash_setup_regs() is an architecture dependent function which is called in architecture independent section. So every architecture supporting kexec should at least provide a dummy definition of crash_setup_regs() even if crash dumping is not implemented yet, to avoid build failures. Signed-off-by: Vivek Goyal Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- include/asm-s390/kexec.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include/asm-s390/kexec.h') diff --git a/include/asm-s390/kexec.h b/include/asm-s390/kexec.h index b4809d98fe6..ce28ddda0f5 100644 --- a/include/asm-s390/kexec.h +++ b/include/asm-s390/kexec.h @@ -36,4 +36,8 @@ #define MAX_NOTE_BYTES 1024 +/* Provide a dummy definition to avoid build failures. */ +static inline void crash_setup_regs(struct pt_regs *newregs, + struct pt_regs *oldregs) { } + #endif /*_S390_KEXEC_H */ -- cgit v1.2.3