aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-01-28 00:50:47 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-28 17:20:21 -0500
commitd190cb87c4503014353f2310c4bfa2268fa7111d (patch)
treec78b5fe53adfad99200c286897ba8883f8dfb5d1 /arch/x86/include
parenta5c4329622a3437adef4b2a4288d127957743c97 (diff)
x86, apic: clean up ->ioapic_phys_id_map()
- separate the namespace - remove macros Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/include')
-rw-r--r--arch/x86/include/asm/bigsmp/apic.h2
-rw-r--r--arch/x86/include/asm/es7000/apic.h2
-rw-r--r--arch/x86/include/asm/mach-default/mach_apic.h2
-rw-r--r--arch/x86/include/asm/mach-generic/mach_apic.h1
-rw-r--r--arch/x86/include/asm/numaq/apic.h2
-rw-r--r--arch/x86/include/asm/summit/apic.h3
6 files changed, 6 insertions, 6 deletions
diff --git a/arch/x86/include/asm/bigsmp/apic.h b/arch/x86/include/asm/bigsmp/apic.h
index 819413082999..05116d5487d2 100644
--- a/arch/x86/include/asm/bigsmp/apic.h
+++ b/arch/x86/include/asm/bigsmp/apic.h
@@ -94,7 +94,7 @@ static inline int cpu_to_logical_apicid(int cpu)
94 return cpu_physical_id(cpu); 94 return cpu_physical_id(cpu);
95} 95}
96 96
97static inline physid_mask_t ioapic_phys_id_map(physid_mask_t phys_map) 97static inline physid_mask_t bigsmp_ioapic_phys_id_map(physid_mask_t phys_map)
98{ 98{
99 /* For clustered we don't have a good way to do this yet - hack */ 99 /* For clustered we don't have a good way to do this yet - hack */
100 return physids_promote(0xFFL); 100 return physids_promote(0xFFL);
diff --git a/arch/x86/include/asm/es7000/apic.h b/arch/x86/include/asm/es7000/apic.h
index 06f5757bf7af..db3e652f0f7d 100644
--- a/arch/x86/include/asm/es7000/apic.h
+++ b/arch/x86/include/asm/es7000/apic.h
@@ -125,7 +125,7 @@ static inline int cpu_to_logical_apicid(int cpu)
125#endif 125#endif
126} 126}
127 127
128static inline physid_mask_t ioapic_phys_id_map(physid_mask_t phys_map) 128static inline physid_mask_t es7000_ioapic_phys_id_map(physid_mask_t phys_map)
129{ 129{
130 /* For clustered we don't have a good way to do this yet - hack */ 130 /* For clustered we don't have a good way to do this yet - hack */
131 return physids_promote(0xff); 131 return physids_promote(0xff);
diff --git a/arch/x86/include/asm/mach-default/mach_apic.h b/arch/x86/include/asm/mach-default/mach_apic.h
index 23e0a2da3a96..7abdaae06f24 100644
--- a/arch/x86/include/asm/mach-default/mach_apic.h
+++ b/arch/x86/include/asm/mach-default/mach_apic.h
@@ -99,7 +99,7 @@ static inline unsigned long default_check_apicid_present(int bit)
99 return physid_isset(bit, phys_cpu_present_map); 99 return physid_isset(bit, phys_cpu_present_map);
100} 100}
101 101
102static inline physid_mask_t ioapic_phys_id_map(physid_mask_t phys_map) 102static inline physid_mask_t default_ioapic_phys_id_map(physid_mask_t phys_map)
103{ 103{
104 return phys_map; 104 return phys_map;
105} 105}
diff --git a/arch/x86/include/asm/mach-generic/mach_apic.h b/arch/x86/include/asm/mach-generic/mach_apic.h
index 8e51f4163944..c1c96e6bb185 100644
--- a/arch/x86/include/asm/mach-generic/mach_apic.h
+++ b/arch/x86/include/asm/mach-generic/mach_apic.h
@@ -3,7 +3,6 @@
3 3
4#include <asm/genapic.h> 4#include <asm/genapic.h>
5 5
6#define ioapic_phys_id_map (apic->ioapic_phys_id_map)
7#define setup_apic_routing (apic->setup_apic_routing) 6#define setup_apic_routing (apic->setup_apic_routing)
8#define multi_timer_check (apic->multi_timer_check) 7#define multi_timer_check (apic->multi_timer_check)
9#define apicid_to_node (apic->apicid_to_node) 8#define apicid_to_node (apic->apicid_to_node)
diff --git a/arch/x86/include/asm/numaq/apic.h b/arch/x86/include/asm/numaq/apic.h
index 802297489a34..dc7499b92629 100644
--- a/arch/x86/include/asm/numaq/apic.h
+++ b/arch/x86/include/asm/numaq/apic.h
@@ -48,7 +48,7 @@ static inline int multi_timer_check(int apic, int irq)
48 return apic != 0 && irq == 0; 48 return apic != 0 && irq == 0;
49} 49}
50 50
51static inline physid_mask_t ioapic_phys_id_map(physid_mask_t phys_map) 51static inline physid_mask_t numaq_ioapic_phys_id_map(physid_mask_t phys_map)
52{ 52{
53 /* We don't have a good way to do this yet - hack */ 53 /* We don't have a good way to do this yet - hack */
54 return physids_promote(0xFUL); 54 return physids_promote(0xFUL);
diff --git a/arch/x86/include/asm/summit/apic.h b/arch/x86/include/asm/summit/apic.h
index 9108c89fe881..4dafb58f9307 100644
--- a/arch/x86/include/asm/summit/apic.h
+++ b/arch/x86/include/asm/summit/apic.h
@@ -109,7 +109,8 @@ static inline int cpu_present_to_apicid(int mps_cpu)
109 return BAD_APICID; 109 return BAD_APICID;
110} 110}
111 111
112static inline physid_mask_t ioapic_phys_id_map(physid_mask_t phys_id_map) 112static inline physid_mask_t
113 summit_ioapic_phys_id_map(physid_mask_t phys_id_map)
113{ 114{
114 /* For clustered we don't have a good way to do this yet - hack */ 115 /* For clustered we don't have a good way to do this yet - hack */
115 return physids_promote(0x0F); 116 return physids_promote(0x0F);