s390/kexec: move machine_crash_shutdown() to machine_kexec.c
authorHeiko Carstens <heiko.carstens@de.ibm.com>
Mon, 27 Aug 2012 13:50:29 +0000 (15:50 +0200)
committerMartin Schwidefsky <schwidefsky@de.ibm.com>
Wed, 26 Sep 2012 13:44:54 +0000 (15:44 +0200)
machine_crash_shutdown() was the only function in crash.c.
So move the function and delete one file.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
arch/s390/kernel/Makefile
arch/s390/kernel/crash.c [deleted file]
arch/s390/kernel/machine_kexec.c

index 86b8247134c1e1591568401036b421dd2f9cde86..9a111b621f4e07281c9ace4493cf6434556817fe 100644 (file)
@@ -52,7 +52,7 @@ obj-$(CONFIG_PERF_EVENTS)     += perf_event.o perf_cpum_cf.o
 obj-$(CONFIG_64BIT)            += cache.o
 
 # Kexec part
-S390_KEXEC_OBJS := machine_kexec.o crash.o
+S390_KEXEC_OBJS := machine_kexec.o
 S390_KEXEC_OBJS += $(if $(CONFIG_64BIT),relocate_kernel64.o,relocate_kernel.o)
 obj-$(CONFIG_KEXEC) += $(S390_KEXEC_OBJS)
 
diff --git a/arch/s390/kernel/crash.c b/arch/s390/kernel/crash.c
deleted file mode 100644 (file)
index 3819153..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-/*
- * Copyright IBM Corp. 2005
- *
- * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>
- *
- */
-
-#include <linux/threads.h>
-#include <linux/kexec.h>
-#include <linux/reboot.h>
-
-void machine_crash_shutdown(struct pt_regs *regs)
-{
-}
index 493304bdf1c7845c34c632b33361b6468126c7a6..0d5063e0ff799ec01162d9d558ec9616af1066de 100644 (file)
@@ -191,6 +191,10 @@ void machine_shutdown(void)
 {
 }
 
+void machine_crash_shutdown(struct pt_regs *regs)
+{
+}
+
 /*
  * Do normal kexec
  */