diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-01-28 17:09:58 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-28 23:20:34 +0100 |
commit | 018e047f3a98bd8d9e9d78b19bc38415f0c34dd7 (patch) | |
tree | 4e3b47a6e5b3e5e50ecdc668b7261399ce3457c0 /arch/x86/include/asm/es7000/ipi.h | |
parent | 25dc004903a38f0b6f6626dbbab058c8709c5398 (diff) | |
download | lwn-018e047f3a98bd8d9e9d78b19bc38415f0c34dd7.tar.gz lwn-018e047f3a98bd8d9e9d78b19bc38415f0c34dd7.zip |
x86, ES7000: consolidate the APIC code
Consolidate all the ES7000 APIC code into arch/x86/mach-generic/es7000.c.
With this ES7000 ceases to rely on any subarchitecture include files.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/include/asm/es7000/ipi.h')
-rw-r--r-- | arch/x86/include/asm/es7000/ipi.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/arch/x86/include/asm/es7000/ipi.h b/arch/x86/include/asm/es7000/ipi.h deleted file mode 100644 index 81e77c812baa..000000000000 --- a/arch/x86/include/asm/es7000/ipi.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef __ASM_ES7000_IPI_H -#define __ASM_ES7000_IPI_H - -void default_send_IPI_mask_sequence(const struct cpumask *mask, int vector); -void default_send_IPI_mask_allbutself(const struct cpumask *mask, int vector); - -static inline void es7000_send_IPI_mask(const struct cpumask *mask, int vector) -{ - default_send_IPI_mask_sequence(mask, vector); -} - -static inline void es7000_send_IPI_allbutself(int vector) -{ - default_send_IPI_mask_allbutself(cpu_online_mask, vector); -} - -static inline void es7000_send_IPI_all(int vector) -{ - es7000_send_IPI_mask(cpu_online_mask, vector); -} - -#endif /* __ASM_ES7000_IPI_H */ |