Commit 23551885 authored by Ingo Molnar's avatar Ingo Molnar

x86: avoid build warning

fix this build warning:

 include/asm/topology_32.h: In function 'node_to_first_cpu':
 include/asm/topology_32.h:66: warning: unused variable 'mask'
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 675a0813
...@@ -218,8 +218,8 @@ int __first_cpu(const cpumask_t *srcp); ...@@ -218,8 +218,8 @@ int __first_cpu(const cpumask_t *srcp);
int __next_cpu(int n, const cpumask_t *srcp); int __next_cpu(int n, const cpumask_t *srcp);
#define next_cpu(n, src) __next_cpu((n), &(src)) #define next_cpu(n, src) __next_cpu((n), &(src))
#else #else
#define first_cpu(src) 0 #define first_cpu(src) ({ (void)(src); 0; })
#define next_cpu(n, src) 1 #define next_cpu(n, src) ({ (void)(src); 1; })
#endif #endif
#define cpumask_of_cpu(cpu) \ #define cpumask_of_cpu(cpu) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment