Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755306AbdGEUC6 (ORCPT ); Wed, 5 Jul 2017 16:02:58 -0400 Received: from smtprelay0197.hostedemail.com ([216.40.44.197]:34216 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1755291AbdGEUC5 (ORCPT ); Wed, 5 Jul 2017 16:02:57 -0400 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::,RULES_HIT:41:355:379:541:800:960:973:988:989:1260:1345:1359:1437:1534:1539:1567:1711:1714:1730:1747:1777:1792:2393:2559:2562:3138:3139:3140:3141:3142:3165:3865:3866:4321:5007:6261:10004:10848:11026:11657:11658:11914:12043:12438:12555:12895:12986:13069:13311:13357:14181:14384:14394:14721:21080:21627:30012:30054,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:,MSBL:0,DNSBL:none,Custom_rules:0:0:0,LFtime:1,LUA_SUMMARY:none X-HE-Tag: fork56_8de97f0eb1214 X-Filterd-Recvd-Size: 1447 From: Joe Perches To: Andrew Morton , linux-kernel@vger.kernel.org Cc: Ralf Baechle , linux-mips@linux-mips.org Subject: [PATCH 09/18] MIPS: SMP: Move asmlinkage before return type Date: Wed, 5 Jul 2017 13:02:18 -0700 Message-Id: <756d3fb543e981b9284e756fa27616725a354b28.1499284835.git.joe@perches.com> X-Mailer: git-send-email 2.10.0.rc2.1.g053435c In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 690 Lines: 22 Make the code like the rest of the kernel. Signed-off-by: Joe Perches --- arch/mips/include/asm/smp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/include/asm/smp.h b/arch/mips/include/asm/smp.h index 98a117a05fbc..bab3d41e5987 100644 --- a/arch/mips/include/asm/smp.h +++ b/arch/mips/include/asm/smp.h @@ -47,7 +47,7 @@ extern int __cpu_logical_map[NR_CPUS]; /* Mask of CPUs which are currently definitely operating coherently */ extern cpumask_t cpu_coherent_mask; -extern void asmlinkage smp_bootstrap(void); +extern asmlinkage void smp_bootstrap(void); extern void calculate_cpu_foreign_map(void); -- 2.10.0.rc2.1.g053435c