aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mach-generic/bigsmp.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-01-28 10:31:52 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-28 17:20:34 -0500
commit25dc004903a38f0b6f6626dbbab058c8709c5398 (patch)
tree81c0a02f81e67946977fe45c0d4d587be2935f63 /arch/x86/mach-generic/bigsmp.c
parent3d5f597e938c425554cb7668fd3c9d6a536a984a (diff)
x86, smp: refactor ->inquire_remote_apic() methods
Nothing exciting - a few subarches dont want APIC remote reads to be performed - the others are content with the default method. - extend the generic code to handle NULL methods - clear out dummy methods and replace them with NULL - clean up: remove wrapper macros, etc. Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mach-generic/bigsmp.c')
-rw-r--r--arch/x86/mach-generic/bigsmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mach-generic/bigsmp.c b/arch/x86/mach-generic/bigsmp.c
index d9377af88cb3..4d8b2d442bae 100644
--- a/arch/x86/mach-generic/bigsmp.c
+++ b/arch/x86/mach-generic/bigsmp.c
@@ -111,5 +111,5 @@ struct genapic apic_bigsmp = {
111 111
112 .smp_callin_clear_local_apic = NULL, 112 .smp_callin_clear_local_apic = NULL,
113 .store_NMI_vector = NULL, 113 .store_NMI_vector = NULL,
114 .inquire_remote_apic = inquire_remote_apic, 114 .inquire_remote_apic = default_inquire_remote_apic,
115}; 115};