From: Greg Kroah-Hartman Date: Mon, 21 Sep 2015 01:46:23 +0000 (-0700) Subject: 4.1-stable patches X-Git-Tag: v3.10.89~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=249c282a18ef1262d6fbc46c54fb470473d4dcd1;p=thirdparty%2Fkernel%2Fstable-queue.git 4.1-stable patches added patches: arm-rockchip-fix-broken-build.patch --- diff --git a/queue-4.1/arm-rockchip-fix-broken-build.patch b/queue-4.1/arm-rockchip-fix-broken-build.patch new file mode 100644 index 00000000000..ff75b5d910d --- /dev/null +++ b/queue-4.1/arm-rockchip-fix-broken-build.patch @@ -0,0 +1,47 @@ +From cb8cc37f4d38d96552f2c52deb15e511cdacf906 Mon Sep 17 00:00:00 2001 +From: Caesar Wang +Date: Mon, 6 Jul 2015 11:37:23 +0800 +Subject: ARM: rockchip: fix broken build + +From: Caesar Wang + +commit cb8cc37f4d38d96552f2c52deb15e511cdacf906 upstream. + +The following was seen in branch[0] build. + +arch/arm/mach-rockchip/platsmp.c:154:23: error: + 'rockchip_secondary_startup' undeclared (first use in this function) + +branch[0]: +git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git +v4.3-armsoc/soc + +The broken build is caused by the commit fe4407c0dc58 +("ARM: rockchip: fix the CPU soft reset"). + +Signed-off-by: Caesar Wang + +The breakage was a result of it being wrongly merged in my branch with +the cache invalidation rework from Russell 02b4e2756e01c +("ARM: v7 setup function should invalidate L1 cache"). + +Signed-off-by: Heiko Stuebner +Cc: Willy Tarreau +Signed-off-by: Greg Kroah-Hartman + +--- + arch/arm/mach-rockchip/platsmp.c | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +--- a/arch/arm/mach-rockchip/platsmp.c ++++ b/arch/arm/mach-rockchip/platsmp.c +@@ -152,8 +152,7 @@ static int __cpuinit rockchip_boot_secon + * */ + mdelay(1); /* ensure the cpus other than cpu0 to startup */ + +- writel(virt_to_phys(rockchip_secondary_startup), +- sram_base_addr + 8); ++ writel(virt_to_phys(secondary_startup), sram_base_addr + 8); + writel(0xDEADBEAF, sram_base_addr + 4); + dsb_sev(); + } diff --git a/queue-4.1/series b/queue-4.1/series index aa067542615..2fab30dfe9e 100644 --- a/queue-4.1/series +++ b/queue-4.1/series @@ -100,3 +100,4 @@ drivercore-fix-unregistration-path-of-platform-devices.patch fs-set-the-size-of-empty-dirs-to-0.patch hpfs-update-ctime-and-mtime-on-directory-modification.patch fs-create-and-use-seq_show_option-for-escaping.patch +arm-rockchip-fix-broken-build.patch