This is a note to let you know that I've just added the patch titled ARM: vexpress: use ARM_CPU_SUSPEND if needed to the 3.18-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: arm-vexpress-use-arm_cpu_suspend-if-needed.patch and it can be found in the queue-3.18 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 95fcedb027a27f32bf2434f9271635c380e57fb5 Mon Sep 17 00:00:00 2001 From: Arnd Bergmann <arnd@xxxxxxxx> Date: Thu, 5 Feb 2015 13:42:43 +0100 Subject: ARM: vexpress: use ARM_CPU_SUSPEND if needed From: Arnd Bergmann <arnd@xxxxxxxx> commit 95fcedb027a27f32bf2434f9271635c380e57fb5 upstream. The vexpress tc2 power management code calls mcpm_loopback, which is only available if ARM_CPU_SUSPEND is enabled, otherwise we get a link error: arch/arm/mach-vexpress/built-in.o: In function `tc2_pm_init': arch/arm/mach-vexpress/tc2_pm.c:389: undefined reference to `mcpm_loopback' This explicitly selects ARM_CPU_SUSPEND like other platforms that need it. Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx> Fixes: 3592d7e002438 ("ARM: 8082/1: TC2: test the MCPM loopback during boot") Acked-by: Nicolas Pitre <nico@xxxxxxxxxx> Acked-by: Liviu Dudau <liviu.dudau@xxxxxxx> Cc: Kevin Hilman <khilman@xxxxxxxxxx> Cc: Sudeep Holla <sudeep.holla@xxxxxxx> Cc: Lorenzo Pieralisi <lorenzo.pieralisi@xxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- arch/arm/mach-vexpress/Kconfig | 1 + 1 file changed, 1 insertion(+) --- a/arch/arm/mach-vexpress/Kconfig +++ b/arch/arm/mach-vexpress/Kconfig @@ -75,6 +75,7 @@ config ARCH_VEXPRESS_TC2_PM depends on MCPM select ARM_CCI select ARCH_VEXPRESS_SPC + select ARM_CPU_SUSPEND help Support for CPU and cluster power management on Versatile Express with a TC2 (A15x2 A7x3) big.LITTLE core tile. Patches currently in stable-queue which might be from arnd@xxxxxxxx are queue-3.18/cpufreq-s3c-remove-last-use-of-resume_clocks-callback.patch queue-3.18/arm-vexpress-use-arm_cpu_suspend-if-needed.patch queue-3.18/timberdale-do-not-select-timb_dma.patch queue-3.18/cpufreq-s3c-remove-incorrect-__init-annotations.patch queue-3.18/arm-mvebu-build-armada375-smp-code-conditionally.patch queue-3.18/usb-musb-add-omap-control-dependency.patch queue-3.18/asoc-davinci-fix-dm365_evm-codec-selection.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html