diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-05-22 10:52:32 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-05-22 10:53:20 +0100 |
commit | 78ecad0183bd7e49131da2b5aa82bee017db1cf0 (patch) | |
tree | 4059732146dd410d134fbc9eddfbb3f79ef509a5 /arch/arm/kernel/Makefile | |
parent | f150abe1012f2fc7d444d33d651db32435038c11 (diff) | |
parent | b382b940f821784107ca22de3455bb90e4512557 (diff) | |
download | op-kernel-dev-78ecad0183bd7e49131da2b5aa82bee017db1cf0.zip op-kernel-dev-78ecad0183bd7e49131da2b5aa82bee017db1cf0.tar.gz |
Merge tag '3.10-rc2-psci-ops-11-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/sstabellini/xen into devel-stable
Pull psci_smp_ops support from Stefano Stabellini:
It contains the generic PSCI patch and the smp_init patch that we
discussed so much about. I think it would be helpful for other
people if you could create a stable branch with these patches so
that SoC devs can base their work on it.
Diffstat (limited to 'arch/arm/kernel/Makefile')
-rw-r--r-- | arch/arm/kernel/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/kernel/Makefile b/arch/arm/kernel/Makefile index 00d703c..f4285b5 100644 --- a/arch/arm/kernel/Makefile +++ b/arch/arm/kernel/Makefile @@ -88,6 +88,9 @@ obj-$(CONFIG_DEBUG_LL) += debug.o obj-$(CONFIG_EARLY_PRINTK) += early_printk.o obj-$(CONFIG_ARM_VIRT_EXT) += hyp-stub.o -obj-$(CONFIG_ARM_PSCI) += psci.o +ifeq ($(CONFIG_ARM_PSCI),y) +obj-y += psci.o +obj-$(CONFIG_SMP) += psci_smp.o +endif extra-y := $(head-y) vmlinux.lds |