diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2008-01-30 07:30:55 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:30:55 -0500 |
commit | 5548fecdff5617ba3a2f09f0e585e1ac6e1bd25c (patch) | |
tree | 9761144d3140a554c062a289a40c1e0a5e206ef8 /include/asm-x86 | |
parent | 1c54d77078056cde0f195b1a982cb681850efc08 (diff) |
x86: clean up bitops-related warnings
Add casts to appropriate places to silence spurious bitops warnings.
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
Cc: Andi Kleen <ak@suse.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86')
-rw-r--r-- | include/asm-x86/cpufeature.h | 2 | ||||
-rw-r--r-- | include/asm-x86/numa_64.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-x86/cpufeature.h b/include/asm-x86/cpufeature.h index acbf6681740d..761922972f6f 100644 --- a/include/asm-x86/cpufeature.h +++ b/include/asm-x86/cpufeature.h | |||
@@ -124,7 +124,7 @@ | |||
124 | (((bit)>>5)==6 && (1UL<<((bit)&31) & REQUIRED_MASK6)) || \ | 124 | (((bit)>>5)==6 && (1UL<<((bit)&31) & REQUIRED_MASK6)) || \ |
125 | (((bit)>>5)==7 && (1UL<<((bit)&31) & REQUIRED_MASK7)) ) \ | 125 | (((bit)>>5)==7 && (1UL<<((bit)&31) & REQUIRED_MASK7)) ) \ |
126 | ? 1 : \ | 126 | ? 1 : \ |
127 | test_bit(bit, (c)->x86_capability)) | 127 | test_bit(bit, (unsigned long *)(c)->x86_capability)) |
128 | #define boot_cpu_has(bit) cpu_has(&boot_cpu_data, bit) | 128 | #define boot_cpu_has(bit) cpu_has(&boot_cpu_data, bit) |
129 | 129 | ||
130 | #define cpu_has_fpu boot_cpu_has(X86_FEATURE_FPU) | 130 | #define cpu_has_fpu boot_cpu_has(X86_FEATURE_FPU) |
diff --git a/include/asm-x86/numa_64.h b/include/asm-x86/numa_64.h index c3c20db1fba3..4449889bb0c0 100644 --- a/include/asm-x86/numa_64.h +++ b/include/asm-x86/numa_64.h | |||
@@ -32,7 +32,7 @@ extern void __init init_cpu_to_node(void); | |||
32 | 32 | ||
33 | static inline void clear_node_cpumask(int cpu) | 33 | static inline void clear_node_cpumask(int cpu) |
34 | { | 34 | { |
35 | clear_bit(cpu, &node_to_cpumask_map[cpu_to_node(cpu)]); | 35 | clear_bit(cpu, (unsigned long *)&node_to_cpumask_map[cpu_to_node(cpu)]); |
36 | } | 36 | } |
37 | 37 | ||
38 | #else | 38 | #else |