Now that the GIC initialization sets up the handle_arch_irq pointer, we can remove it for all machines and make it static. Signed-off-by: Rob Herring <rob.herring@calxeda.com> Cc: Russell King <linux@arm.linux.org.uk> Cc: Anton Vorontsov <avorontsov@mvista.com> Cc: Kyungmin Park <kyungmin.park@samsung.com> Cc: Sascha Hauer <kernel@pengutronix.de> Cc: David Brown <davidb@codeaurora.org> Cc: Daniel Walker <dwalker@fifo99.com> Cc: Bryan Huntsman <bryanh@codeaurora.org> Acked-by: Tony Lindgren <tony@atomide.com> Cc: Paul Mundt <lethal@linux-sh.org> Cc: Magnus Damm <magnus.damm@gmail.com> Cc: Dinh Nguyen <dinguyen@altera.com> Cc: Shiraz Hashim <shiraz.hashim@st.com> Acked-by: Stephen Warren <swarren@nvidia.com> Cc: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com> Cc: Linus Walleij <linus.walleij@linaro.org> Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Acked-by: Kukjin Kim <kgene.kim@samsung.com> Acked-by: Shawn Guo <shawn.guo@linaro.org> Acked-by: Olof Johansson <olof@lixom.net> Acked-by: Arnd Bergmann <arnd@arndb.de>
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			711 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			711 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * SMP support for R-Mobile / SH-Mobile
 | 
						|
 *
 | 
						|
 * Copyright (C) 2010  Magnus Damm
 | 
						|
 * Copyright (C) 2011  Paul Mundt
 | 
						|
 *
 | 
						|
 * Based on vexpress, Copyright (C) 2002 ARM Ltd, All Rights Reserved
 | 
						|
 *
 | 
						|
 * This program is free software; you can redistribute it and/or modify
 | 
						|
 * it under the terms of the GNU General Public License version 2 as
 | 
						|
 * published by the Free Software Foundation.
 | 
						|
 */
 | 
						|
#include <linux/init.h>
 | 
						|
#include <linux/smp.h>
 | 
						|
 | 
						|
void __init shmobile_smp_init_cpus(unsigned int ncores)
 | 
						|
{
 | 
						|
	unsigned int i;
 | 
						|
 | 
						|
	if (ncores > nr_cpu_ids) {
 | 
						|
		pr_warn("SMP: %u cores greater than maximum (%u), clipping\n",
 | 
						|
			ncores, nr_cpu_ids);
 | 
						|
		ncores = nr_cpu_ids;
 | 
						|
	}
 | 
						|
 | 
						|
	for (i = 0; i < ncores; i++)
 | 
						|
		set_cpu_possible(i, true);
 | 
						|
}
 |