diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-01-27 23:41:42 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-28 17:20:19 -0500 |
commit | d1d7cae8fd54a301a0de531b48451649933ffdcf (patch) | |
tree | 7cbd78a527f79564adf8f3ed095e1df051e0764d /arch/x86/include/asm/mach-default | |
parent | bdb1a9b62fc182d4da3143e346f7a0925d243352 (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/include/asm/mach-default')
-rw-r--r-- | arch/x86/include/asm/mach-default/mach_apic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/include/asm/mach-default/mach_apic.h b/arch/x86/include/asm/mach-default/mach_apic.h index 5f8d17fdc965..064bc11a991c 100644 --- a/arch/x86/include/asm/mach-default/mach_apic.h +++ b/arch/x86/include/asm/mach-default/mach_apic.h | |||
@@ -105,12 +105,12 @@ static inline void vector_allocation_domain(int cpu, struct cpumask *retmask) | |||
105 | } | 105 | } |
106 | #endif | 106 | #endif |
107 | 107 | ||
108 | static inline unsigned long check_apicid_used(physid_mask_t bitmap, int apicid) | 108 | static inline unsigned long default_check_apicid_used(physid_mask_t bitmap, int apicid) |
109 | { | 109 | { |
110 | return physid_isset(apicid, bitmap); | 110 | return physid_isset(apicid, bitmap); |
111 | } | 111 | } |
112 | 112 | ||
113 | static inline unsigned long check_apicid_present(int bit) | 113 | static inline unsigned long default_check_apicid_present(int bit) |
114 | { | 114 | { |
115 | return physid_isset(bit, phys_cpu_present_map); | 115 | return physid_isset(bit, phys_cpu_present_map); |
116 | } | 116 | } |