This is a note to let you know that I've just added the patch titled
ARM: mvebu: build armada375-smp code conditionally
to the 3.19-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-mvebu-build-armada375-smp-code-conditionally.patch
and it can be found in the queue-3.19 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From 165235180ff61f0012ea68a299e46daec43dcaa7 Mon Sep 17 00:00:00 2001
From: Arnd Bergmann <[email protected]>
Date: Mon, 2 Feb 2015 15:27:16 +0100
Subject: ARM: mvebu: build armada375-smp code conditionally
From: Arnd Bergmann <[email protected]>
commit 165235180ff61f0012ea68a299e46daec43dcaa7 upstream.
mvebu_armada375_smp_wa_init is only used on armada 375 but is defined
for all mvebu machines. As it calls a function that is only provided
sometimes, this can result in a link error:
arch/arm/mach-mvebu/built-in.o: In function `mvebu_armada375_smp_wa_init':
:(.text+0x228): undefined reference to `mvebu_setup_boot_addr_wa'
To solve this, we can just change the existing #ifdef around the
function to also check for Armada375 SMP platforms.
Signed-off-by: Arnd Bergmann <[email protected]>
Fixes: 305969fb6292 ("ARM: mvebu: use the common function for Armada 375 SMP
workaround")
Cc: Andrew Lunn <[email protected]>
Cc: Jason Cooper <[email protected]>
Cc: Gregory Clement <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
arch/arm/mach-mvebu/system-controller.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/arch/arm/mach-mvebu/system-controller.c
+++ b/arch/arm/mach-mvebu/system-controller.c
@@ -126,7 +126,7 @@ int mvebu_system_controller_get_soc_id(u
return -ENODEV;
}
-#ifdef CONFIG_SMP
+#if defined(CONFIG_SMP) && defined(CONFIG_MACH_MVEBU_V7)
void mvebu_armada375_smp_wa_init(void)
{
u32 dev, rev;
Patches currently in stable-queue which might be from [email protected] are
queue-3.19/cpufreq-s3c-remove-last-use-of-resume_clocks-callback.patch
queue-3.19/arm-vexpress-use-arm_cpu_suspend-if-needed.patch
queue-3.19/timberdale-do-not-select-timb_dma.patch
queue-3.19/asoc-rt5677-fix-spi-dependency.patch
queue-3.19/cpufreq-s3c-remove-incorrect-__init-annotations.patch
queue-3.19/arm-mvebu-build-armada375-smp-code-conditionally.patch
queue-3.19/arm-bcm-put-back-arch_multi_v7-dependency-for-mobile.patch
queue-3.19/usb-musb-add-omap-control-dependency.patch
queue-3.19/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 [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html