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/es7000/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/es7000/apic.h')
-rw-r--r-- | arch/x86/include/asm/es7000/apic.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/x86/include/asm/es7000/apic.h b/arch/x86/include/asm/es7000/apic.h index 0d770fce4b28..cd888daa1930 100644 --- a/arch/x86/include/asm/es7000/apic.h +++ b/arch/x86/include/asm/es7000/apic.h | |||
@@ -28,11 +28,12 @@ static inline const cpumask_t *es7000_target_cpus(void) | |||
28 | #define APIC_DFR_VALUE (APIC_DFR_FLAT) | 28 | #define APIC_DFR_VALUE (APIC_DFR_FLAT) |
29 | #define NO_BALANCE_IRQ (0) | 29 | #define NO_BALANCE_IRQ (0) |
30 | 30 | ||
31 | static inline unsigned long check_apicid_used(physid_mask_t bitmap, int apicid) | 31 | static inline unsigned long |
32 | es7000_check_apicid_used(physid_mask_t bitmap, int apicid) | ||
32 | { | 33 | { |
33 | return 0; | 34 | return 0; |
34 | } | 35 | } |
35 | static inline unsigned long check_apicid_present(int bit) | 36 | static inline unsigned long es7000_check_apicid_present(int bit) |
36 | { | 37 | { |
37 | return physid_isset(bit, phys_cpu_present_map); | 38 | return physid_isset(bit, phys_cpu_present_map); |
38 | } | 39 | } |