diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2012-05-03 09:03:00 +0000 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2012-05-05 13:00:26 +0200 |
commit | d0b691dffaee89a4c9e1890694d0c77201d7a9b1 (patch) | |
tree | 20e4d25d0d25bccb1d77fd998aedb79e2b6e0070 /arch/unicore32/kernel/Makefile | |
parent | 293ef7b8288da79112276ddd53902aff75ce7494 (diff) |
unicore32: Use generic init_task
Same code. Use the generic version. The special Makefile treatment is
pointless anyway as init_task.o contains only data which is handled by
the linker script. So no point on being treated like head text.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Guan Xuetao <gxt@mprc.pku.edu.cn>
Link: http://lkml.kernel.org/r/20120503085035.669622065@linutronix.de
Diffstat (limited to 'arch/unicore32/kernel/Makefile')
-rw-r--r-- | arch/unicore32/kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/unicore32/kernel/Makefile b/arch/unicore32/kernel/Makefile index aeb0f181568..32401015695 100644 --- a/arch/unicore32/kernel/Makefile +++ b/arch/unicore32/kernel/Makefile @@ -29,4 +29,4 @@ obj-$(CONFIG_PUV3_NB0916) += puv3-nb0916.o head-y := head.o obj-$(CONFIG_DEBUG_LL) += debug.o -extra-y := $(head-y) init_task.o vmlinux.lds +extra-y := $(head-y) vmlinux.lds |