diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-01-28 09:42:24 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-28 17:20:31 -0500 |
commit | dac5f4121df3c39fdb2ea57acd669a0ae19e46f8 (patch) | |
tree | c3dde8b525b1a8e73732bdffdb7e819f4a14fd3a /arch/x86/mach-generic/es7000.c | |
parent | debccb3e77be52cfc26c5a99e123c114c5c72aeb (diff) |
x86, apic: untangle the send_IPI_*() jungle
Our send_IPI_*() methods and definitions are a twisted mess: the same
symbol is defined to different things depending on .config details,
in a non-transparent way.
- spread out the quirks into separately named per apic driver methods
- prefix the standard PC methods with default_
- get rid of wrapper macro obfuscation
- clean up various details
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mach-generic/es7000.c')
-rw-r--r-- | arch/x86/mach-generic/es7000.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/mach-generic/es7000.c b/arch/x86/mach-generic/es7000.c index d758cf65d736..d36642e6d908 100644 --- a/arch/x86/mach-generic/es7000.c +++ b/arch/x86/mach-generic/es7000.c | |||
@@ -133,10 +133,10 @@ struct genapic apic_es7000 = { | |||
133 | .cpu_mask_to_apicid = es7000_cpu_mask_to_apicid, | 133 | .cpu_mask_to_apicid = es7000_cpu_mask_to_apicid, |
134 | .cpu_mask_to_apicid_and = es7000_cpu_mask_to_apicid_and, | 134 | .cpu_mask_to_apicid_and = es7000_cpu_mask_to_apicid_and, |
135 | 135 | ||
136 | .send_IPI_mask = send_IPI_mask, | 136 | .send_IPI_mask = es7000_send_IPI_mask, |
137 | .send_IPI_mask_allbutself = NULL, | 137 | .send_IPI_mask_allbutself = NULL, |
138 | .send_IPI_allbutself = send_IPI_allbutself, | 138 | .send_IPI_allbutself = es7000_send_IPI_allbutself, |
139 | .send_IPI_all = send_IPI_all, | 139 | .send_IPI_all = es7000_send_IPI_all, |
140 | .send_IPI_self = NULL, | 140 | .send_IPI_self = NULL, |
141 | 141 | ||
142 | .wakeup_cpu = NULL, | 142 | .wakeup_cpu = NULL, |