diff options
author | Jayachandran C <jchandra@broadcom.com> | 2013-06-10 06:41:01 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2013-06-13 17:46:42 +0200 |
commit | 9584c55a5cc0db82329dd1142ca570e2d64ea491 (patch) | |
tree | b9af527437e603e644b78ec39117df3e4e46794f /arch/mips/netlogic/common/Makefile | |
parent | aceee09d4f09dd7a6be48d04d329c140a5caaaf7 (diff) | |
download | blackbird-op-linux-9584c55a5cc0db82329dd1142ca570e2d64ea491.tar.gz blackbird-op-linux-9584c55a5cc0db82329dd1142ca570e2d64ea491.zip |
MIPS: Netlogic: Split reset code out of smpboot.S
The reset and core initialization code should be available for
uniprocessor as well. This changes is just to take out the code
into a different file, without any change to the logic.
The change for uniprocessor initialization code is in a later patch.
Signed-off-by: Jayachandran C <jchandra@broadcom.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/5423/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/netlogic/common/Makefile')
-rw-r--r-- | arch/mips/netlogic/common/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/netlogic/common/Makefile b/arch/mips/netlogic/common/Makefile index b29549741e05..a396a39ec491 100644 --- a/arch/mips/netlogic/common/Makefile +++ b/arch/mips/netlogic/common/Makefile @@ -1,4 +1,4 @@ obj-y += irq.o time.o obj-y += nlm-dma.o -obj-$(CONFIG_SMP) += smp.o smpboot.o +obj-$(CONFIG_SMP) += smp.o smpboot.o reset.o obj-$(CONFIG_EARLY_PRINTK) += earlycons.o |