[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1436153843-27784-1-git-send-email-wxt@rock-chips.com>
Date: Mon, 6 Jul 2015 11:37:23 +0800
From: Caesar Wang <wxt@...k-chips.com>
To: heiko@...ech.de
Cc: fengguang.wu@...el.com, linux-rockchip@...ts.infradead.org,
linux-arm-kernel@...ts.infradead.or, dianders@...omium.org,
kever.yang@...k-chips.com, linux-kernel@...r.kernel.org,
Caesar Wang <wxt@...k-chips.com>
Subject: [PATCH] ARM: rockchip: fix broken build
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
(fe4407c0dc58215a7abfb7532740d79ddabe7a7a)
Signed-off-by: Caesar Wang <wxt@...k-chips.com>
---
arch/arm/mach-rockchip/platsmp.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/arch/arm/mach-rockchip/platsmp.c b/arch/arm/mach-rockchip/platsmp.c
index 7ebd1c1..3e7a4b7 100644
--- a/arch/arm/mach-rockchip/platsmp.c
+++ b/arch/arm/mach-rockchip/platsmp.c
@@ -152,8 +152,7 @@ static int rockchip_boot_secondary(unsigned int cpu, struct task_struct *idle)
*/
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();
}
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists