aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mach-generic
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-01-27 23:41:42 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-28 17:20:19 -0500
commitd1d7cae8fd54a301a0de531b48451649933ffdcf (patch)
tree7cbd78a527f79564adf8f3ed095e1df051e0764d /arch/x86/mach-generic
parentbdb1a9b62fc182d4da3143e346f7a0925d243352 (diff)
x86, apic: clean up check_apicid*() callbacks
Clean up these methods - to make it clearer which function is used in which case. Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mach-generic')
-rw-r--r--arch/x86/mach-generic/bigsmp.c4
-rw-r--r--arch/x86/mach-generic/default.c4
-rw-r--r--arch/x86/mach-generic/es7000.c4
-rw-r--r--arch/x86/mach-generic/numaq.c4
-rw-r--r--arch/x86/mach-generic/summit.c4
5 files changed, 10 insertions, 10 deletions
diff --git a/arch/x86/mach-generic/bigsmp.c b/arch/x86/mach-generic/bigsmp.c
index 7c52840f2050..aa8443f6c0f7 100644
--- a/arch/x86/mach-generic/bigsmp.c
+++ b/arch/x86/mach-generic/bigsmp.c
@@ -71,8 +71,8 @@ struct genapic apic_bigsmp = {
71 .target_cpus = bigsmp_target_cpus, 71 .target_cpus = bigsmp_target_cpus,
72 .disable_esr = 1, 72 .disable_esr = 1,
73 .dest_logical = 0, 73 .dest_logical = 0,
74 .check_apicid_used = check_apicid_used, 74 .check_apicid_used = bigsmp_check_apicid_used,
75 .check_apicid_present = check_apicid_present, 75 .check_apicid_present = bigsmp_check_apicid_present,
76 76
77 .no_balance_irq = NO_BALANCE_IRQ, 77 .no_balance_irq = NO_BALANCE_IRQ,
78 .no_ioapic_check = 0, 78 .no_ioapic_check = 0,
diff --git a/arch/x86/mach-generic/default.c b/arch/x86/mach-generic/default.c
index 53fa1ad83184..47f6b5b06ba1 100644
--- a/arch/x86/mach-generic/default.c
+++ b/arch/x86/mach-generic/default.c
@@ -38,8 +38,8 @@ struct genapic apic_default = {
38 .target_cpus = default_target_cpus, 38 .target_cpus = default_target_cpus,
39 .disable_esr = 0, 39 .disable_esr = 0,
40 .dest_logical = APIC_DEST_LOGICAL, 40 .dest_logical = APIC_DEST_LOGICAL,
41 .check_apicid_used = check_apicid_used, 41 .check_apicid_used = default_check_apicid_used,
42 .check_apicid_present = check_apicid_present, 42 .check_apicid_present = default_check_apicid_present,
43 43
44 .no_balance_irq = NO_BALANCE_IRQ, 44 .no_balance_irq = NO_BALANCE_IRQ,
45 .no_ioapic_check = 0, 45 .no_ioapic_check = 0,
diff --git a/arch/x86/mach-generic/es7000.c b/arch/x86/mach-generic/es7000.c
index 50fed0225cda..5633f3296e1c 100644
--- a/arch/x86/mach-generic/es7000.c
+++ b/arch/x86/mach-generic/es7000.c
@@ -114,8 +114,8 @@ struct genapic apic_es7000 = {
114 .target_cpus = es7000_target_cpus, 114 .target_cpus = es7000_target_cpus,
115 .disable_esr = 1, 115 .disable_esr = 1,
116 .dest_logical = 0, 116 .dest_logical = 0,
117 .check_apicid_used = check_apicid_used, 117 .check_apicid_used = es7000_check_apicid_used,
118 .check_apicid_present = check_apicid_present, 118 .check_apicid_present = es7000_check_apicid_present,
119 119
120 .no_balance_irq = NO_BALANCE_IRQ, 120 .no_balance_irq = NO_BALANCE_IRQ,
121 .no_ioapic_check = 0, 121 .no_ioapic_check = 0,
diff --git a/arch/x86/mach-generic/numaq.c b/arch/x86/mach-generic/numaq.c
index 1fb1b1a4aa00..d85206d8e4ae 100644
--- a/arch/x86/mach-generic/numaq.c
+++ b/arch/x86/mach-generic/numaq.c
@@ -58,8 +58,8 @@ struct genapic apic_numaq = {
58 .target_cpus = numaq_target_cpus, 58 .target_cpus = numaq_target_cpus,
59 .disable_esr = 1, 59 .disable_esr = 1,
60 .dest_logical = APIC_DEST_LOGICAL, 60 .dest_logical = APIC_DEST_LOGICAL,
61 .check_apicid_used = check_apicid_used, 61 .check_apicid_used = numaq_check_apicid_used,
62 .check_apicid_present = check_apicid_present, 62 .check_apicid_present = numaq_check_apicid_present,
63 63
64 .no_balance_irq = NO_BALANCE_IRQ, 64 .no_balance_irq = NO_BALANCE_IRQ,
65 .no_ioapic_check = 0, 65 .no_ioapic_check = 0,
diff --git a/arch/x86/mach-generic/summit.c b/arch/x86/mach-generic/summit.c
index 5c27d4d824e5..f54cf73d3edb 100644
--- a/arch/x86/mach-generic/summit.c
+++ b/arch/x86/mach-generic/summit.c
@@ -51,8 +51,8 @@ struct genapic apic_summit = {
51 .target_cpus = summit_target_cpus, 51 .target_cpus = summit_target_cpus,
52 .disable_esr = 1, 52 .disable_esr = 1,
53 .dest_logical = APIC_DEST_LOGICAL, 53 .dest_logical = APIC_DEST_LOGICAL,
54 .check_apicid_used = check_apicid_used, 54 .check_apicid_used = summit_check_apicid_used,
55 .check_apicid_present = check_apicid_present, 55 .check_apicid_present = summit_check_apicid_present,
56 56
57 .no_balance_irq = NO_BALANCE_IRQ, 57 .no_balance_irq = NO_BALANCE_IRQ,
58 .no_ioapic_check = 0, 58 .no_ioapic_check = 0,