From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yingjoe Chen Subject: [PATCH v2 2/9] ARM: add secondary_startup_arm prototype in header file Date: Sat, 16 May 2015 15:58:23 +0800 Message-ID: <1431763110-443-3-git-send-email-yingjoe.chen@mediatek.com> References: <1431763110-443-1-git-send-email-yingjoe.chen@mediatek.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: In-Reply-To: <1431763110-443-1-git-send-email-yingjoe.chen@mediatek.com> Sender: linux-kernel-owner@vger.kernel.org To: Mark Rutland , Matthias Brugger , Thomas Gleixner , Russell King Cc: Arnd Bergmann , Olof Johansson , devicetree@vger.kernel.org, Stephen Boyd , Pawel Moll , Catalin Marinas , Daniel Lezcano , linux-kernel@vger.kernel.org, Marc Carino , Rob Herring , linux-mediatek@lists.infradead.org, Sascha Hauer , Yingjoe Chen , srv_heupstream@mediatek.com, linux-arm-kernel@lists.infradead.org List-Id: devicetree@vger.kernel.org Put secondary_startup_arm() prototype in arch/arm/include/asm/smp.h so users doesn't have to add extern prototype in their code. Signed-off-by: Yingjoe Chen --- arch/arm/include/asm/smp.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/include/asm/smp.h b/arch/arm/include/asm/smp.h index 18f5a55..f5cffb7 100644 --- a/arch/arm/include/asm/smp.h +++ b/arch/arm/include/asm/smp.h @@ -69,6 +69,7 @@ struct secondary_data { extern struct secondary_data secondary_data; extern volatile int pen_release; extern void secondary_startup(void); +extern void secondary_startup_arm(void); extern int __cpu_disable(void); -- 1.8.1.1.dirty