Not all architectures support kexec..

Signed-off-by: Andrew Morton <akpm@osdl.org>
---

 25-akpm/kernel/ksysfs.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff -puN kernel/ksysfs.c~kdump-export-crash-notes-section-address-through-build-fix kernel/ksysfs.c
--- 25/kernel/ksysfs.c~kdump-export-crash-notes-section-address-through-build-fix	2005-02-27 09:54:09.000000000 -0700
+++ 25-akpm/kernel/ksysfs.c	2005-02-27 09:54:34.000000000 -0700
@@ -15,8 +15,6 @@
 #include <linux/module.h>
 #include <linux/init.h>
 
-#include <asm/kexec.h>
-
 #define KERNEL_ATTR_RO(_name) \
 static struct subsys_attribute _name##_attr = __ATTR_RO(_name)
 
@@ -33,6 +31,8 @@ KERNEL_ATTR_RO(hotplug_seqnum);
 #endif
 
 #ifdef CONFIG_KEXEC
+#include <asm/kexec.h>
+
 static ssize_t crash_notes_show(struct subsystem *subsys, char *page)
 {
 	return sprintf(page, "%p\n", (void *)crash_notes);
_