diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-05-22 11:52:32 +0200 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-05-22 11:53:20 +0200 |
commit | 78ecad0183bd7e49131da2b5aa82bee017db1cf0 (patch) | |
tree | 4059732146dd410d134fbc9eddfbb3f79ef509a5 /arch/arm/kernel/Makefile | |
parent | Merge branch 'for-next' of git://git.pengutronix.de/git/ukl/linux into devel-... (diff) | |
parent | ARM: Enable selection of SMP operations at boot time (diff) | |
download | linux-78ecad0183bd7e49131da2b5aa82bee017db1cf0.tar.xz linux-78ecad0183bd7e49131da2b5aa82bee017db1cf0.zip |
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 00d703c49f82..f4285b5ffb05 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 |