diff options
author | Miguel Boton <mboton.lkml@gmail.com> | 2008-01-30 07:32:51 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:32:51 -0500 |
commit | 4d022e35fd7e07c522c7863fee6f07e53cf3fc14 (patch) | |
tree | aae7e2633bd2808d812df652e00eb3e2ff4745d1 /arch/x86/kernel/Makefile | |
parent | 71c339116a216b181fc5e203ef51a033fe5e38cf (diff) |
x86: reboot_{32|64}.c unification
reboot_{32|64}.c unification patch.
This patch unifies the code from the reboot_32.c and reboot_64.c files.
It has been tested in computers with X86_32 and X86_64 kernels and it
looks like all reboot modes work fine (EFI restart system hasn't been
tested yet).
Probably I made some mistakes (like I usually do) so I hope
we can identify and fix them soon.
Signed-off-by: Miguel Boton <mboton@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/Makefile')
-rw-r--r-- | arch/x86/kernel/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/Makefile b/arch/x86/kernel/Makefile index 0903bbf0ca4d..b40bed4baa77 100644 --- a/arch/x86/kernel/Makefile +++ b/arch/x86/kernel/Makefile | |||
@@ -30,8 +30,8 @@ obj-y += step.o | |||
30 | obj-$(CONFIG_STACKTRACE) += stacktrace.o | 30 | obj-$(CONFIG_STACKTRACE) += stacktrace.o |
31 | obj-y += cpu/ | 31 | obj-y += cpu/ |
32 | obj-y += acpi/ | 32 | obj-y += acpi/ |
33 | obj-$(CONFIG_X86_BIOS_REBOOT) += reboot_32.o | 33 | obj-$(CONFIG_X86_BIOS_REBOOT) += reboot.o |
34 | obj-$(CONFIG_X86_64) += reboot_64.o | 34 | obj-$(CONFIG_X86_64) += reboot.o |
35 | obj-$(CONFIG_MCA) += mca_32.o | 35 | obj-$(CONFIG_MCA) += mca_32.o |
36 | obj-$(CONFIG_X86_MSR) += msr.o | 36 | obj-$(CONFIG_X86_MSR) += msr.o |
37 | obj-$(CONFIG_X86_CPUID) += cpuid.o | 37 | obj-$(CONFIG_X86_CPUID) += cpuid.o |