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/summit/apic.h | |
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/summit/apic.h')
-rw-r--r-- | arch/x86/include/asm/summit/apic.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/x86/include/asm/summit/apic.h b/arch/x86/include/asm/summit/apic.h index 84679e687add..482038b244b0 100644 --- a/arch/x86/include/asm/summit/apic.h +++ b/arch/x86/include/asm/summit/apic.h | |||
@@ -23,13 +23,14 @@ static inline const cpumask_t *summit_target_cpus(void) | |||
23 | return &cpumask_of_cpu(0); | 23 | return &cpumask_of_cpu(0); |
24 | } | 24 | } |
25 | 25 | ||
26 | static inline unsigned long check_apicid_used(physid_mask_t bitmap, int apicid) | 26 | static inline unsigned long |
27 | summit_check_apicid_used(physid_mask_t bitmap, int apicid) | ||
27 | { | 28 | { |
28 | return 0; | 29 | return 0; |
29 | } | 30 | } |
30 | 31 | ||
31 | /* we don't use the phys_cpu_present_map to indicate apicid presence */ | 32 | /* we don't use the phys_cpu_present_map to indicate apicid presence */ |
32 | static inline unsigned long check_apicid_present(int bit) | 33 | static inline unsigned long summit_check_apicid_present(int bit) |
33 | { | 34 | { |
34 | return 1; | 35 | return 1; |
35 | } | 36 | } |