| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Default generic APIC driver. This handles upto 8 CPUs. | 
|  | 3 | */ | 
|  | 4 | #define APIC_DEFINITION 1 | 
|  | 5 | #include <linux/config.h> | 
|  | 6 | #include <linux/threads.h> | 
|  | 7 | #include <linux/cpumask.h> | 
|  | 8 | #include <asm/mpspec.h> | 
|  | 9 | #include <asm/mach-default/mach_apicdef.h> | 
|  | 10 | #include <asm/genapic.h> | 
|  | 11 | #include <asm/fixmap.h> | 
|  | 12 | #include <asm/apicdef.h> | 
|  | 13 | #include <linux/kernel.h> | 
|  | 14 | #include <linux/string.h> | 
|  | 15 | #include <linux/smp.h> | 
|  | 16 | #include <linux/init.h> | 
|  | 17 | #include <asm/mach-default/mach_apic.h> | 
|  | 18 | #include <asm/mach-default/mach_ipi.h> | 
|  | 19 | #include <asm/mach-default/mach_mpparse.h> | 
|  | 20 |  | 
|  | 21 | /* should be called last. */ | 
|  | 22 | static __init int probe_default(void) | 
|  | 23 | { | 
|  | 24 | return 1; | 
|  | 25 | } | 
|  | 26 |  | 
|  | 27 | struct genapic apic_default = APIC_INIT("default", probe_default); |