diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2015-04-01 17:02:45 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2015-04-02 09:50:45 +0100 |
commit | 045ab94e10ee17038066d71abc8fdce719ab56f9 (patch) | |
tree | 4792e1db4af20c88bf88a4f8adb280de1b766fdf /arch/arm/kernel/Makefile | |
parent | 767bf7e7a1e82a81c59778348d156993d0a6175d (diff) | |
download | blackbird-obmc-linux-045ab94e10ee17038066d71abc8fdce719ab56f9.tar.gz blackbird-obmc-linux-045ab94e10ee17038066d71abc8fdce719ab56f9.zip |
ARM: move reboot code to arch/arm/kernel/reboot.c
Move shutdown and reboot related code to a separate file, out of
process.c. This helps to avoid polluting process.c with non-process
related code.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/kernel/Makefile')
-rw-r--r-- | arch/arm/kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/kernel/Makefile b/arch/arm/kernel/Makefile index 1c1cdfa566ac..b6544abe2f5e 100644 --- a/arch/arm/kernel/Makefile +++ b/arch/arm/kernel/Makefile @@ -16,7 +16,7 @@ CFLAGS_REMOVE_return_address.o = -pg # Object file lists. obj-y := elf.o entry-common.o irq.o opcodes.o \ - process.o ptrace.o return_address.o \ + process.o ptrace.o reboot.o return_address.o \ setup.o signal.o sigreturn_codes.o \ stacktrace.o sys_arm.o time.o traps.o |