From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965334AbbD0Wsg (ORCPT ); Mon, 27 Apr 2015 18:48:36 -0400 Received: from mail.windriver.com ([147.11.1.11]:57091 "EHLO mail.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965241AbbD0Wse (ORCPT ); Mon, 27 Apr 2015 18:48:34 -0400 From: Paul Gortmaker To: CC: Paul Gortmaker , Sergey Ryazanov , Subject: [PATCH 06/11] mips/ath25: remove legacy __cpuinit section that crept in Date: Mon, 27 Apr 2015 18:47:55 -0400 Message-ID: <1430174880-27958-7-git-send-email-paul.gortmaker@windriver.com> X-Mailer: git-send-email 2.2.1 In-Reply-To: <1430174880-27958-1-git-send-email-paul.gortmaker@windriver.com> References: <1430174880-27958-1-git-send-email-paul.gortmaker@windriver.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org We removed __cpuinit support (leaving no-op stubs) quite some time ago. However this one crept back in as of commit 43cc739fd98b8c517ad45756d869f ("MIPS: ath25: add common parts") Since we want to clobber the stubs soon, get this removed now. Cc: Sergey Ryazanov Cc: linux-mips@linux-mips.org Signed-off-by: Paul Gortmaker --- arch/mips/ath25/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/ath25/board.c b/arch/mips/ath25/board.c index b8bb78282d6a..9ab48ff80c1c 100644 --- a/arch/mips/ath25/board.c +++ b/arch/mips/ath25/board.c @@ -216,7 +216,7 @@ void __init plat_time_init(void) ar2315_plat_time_init(); } -unsigned int __cpuinit get_c0_compare_int(void) +unsigned int get_c0_compare_int(void) { return CP0_LEGACY_COMPARE_IRQ; } -- 2.2.1