CONFIG_HOTPLUG is going away as an option. As a result, the __dev* markings need to be removed. This change removes the use of __devinit, __devexit_p, __devinitdata, __devinitconst, and __devexit from these drivers. Based on patches originally written by Bill Pemberton, but redone by me in order to handle some of the coding style issues better, by hand. Cc: Bill Pemberton <wfp5p@virginia.edu> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
		
			
				
	
	
		
			54 lines
		
	
	
	
		
			1.2 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
	
		
			1.2 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Smp support for CHRP machines.
 | 
						|
 *
 | 
						|
 * Written by Cort Dougan (cort@cs.nmt.edu) borrowing a great
 | 
						|
 * deal of code from the sparc and intel versions.
 | 
						|
 *
 | 
						|
 * Copyright (C) 1999 Cort Dougan <cort@cs.nmt.edu>
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
#include <linux/kernel.h>
 | 
						|
#include <linux/sched.h>
 | 
						|
#include <linux/smp.h>
 | 
						|
#include <linux/interrupt.h>
 | 
						|
#include <linux/kernel_stat.h>
 | 
						|
#include <linux/delay.h>
 | 
						|
#include <linux/init.h>
 | 
						|
#include <linux/spinlock.h>
 | 
						|
 | 
						|
#include <asm/ptrace.h>
 | 
						|
#include <linux/atomic.h>
 | 
						|
#include <asm/irq.h>
 | 
						|
#include <asm/page.h>
 | 
						|
#include <asm/pgtable.h>
 | 
						|
#include <asm/sections.h>
 | 
						|
#include <asm/io.h>
 | 
						|
#include <asm/prom.h>
 | 
						|
#include <asm/smp.h>
 | 
						|
#include <asm/machdep.h>
 | 
						|
#include <asm/mpic.h>
 | 
						|
#include <asm/rtas.h>
 | 
						|
 | 
						|
static int smp_chrp_kick_cpu(int nr)
 | 
						|
{
 | 
						|
	*(unsigned long *)KERNELBASE = nr;
 | 
						|
	asm volatile("dcbf 0,%0"::"r"(KERNELBASE):"memory");
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
static void smp_chrp_setup_cpu(int cpu_nr)
 | 
						|
{
 | 
						|
	mpic_setup_this_cpu();
 | 
						|
}
 | 
						|
 | 
						|
/* CHRP with openpic */
 | 
						|
struct smp_ops_t chrp_smp_ops = {
 | 
						|
	.message_pass = smp_mpic_message_pass,
 | 
						|
	.probe = smp_mpic_probe,
 | 
						|
	.kick_cpu = smp_chrp_kick_cpu,
 | 
						|
	.setup_cpu = smp_chrp_setup_cpu,
 | 
						|
	.give_timebase = rtas_give_timebase,
 | 
						|
	.take_timebase = rtas_take_timebase,
 | 
						|
};
 |