diff options
author | Alexander Gordeev <agordeev@redhat.com> | 2012-06-14 09:49:55 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2012-06-14 12:53:14 +0200 |
commit | ea3807ea52a53f2cdfd60c89d8491fc9a8208d1c (patch) | |
tree | fd9a02a9f0b304f0ce0add19c7eb43c7a1997bb6 /arch/x86/kernel/apic/es7000_32.c | |
parent | a5a391561bc25898ba1a702a0c4b028aa5b11ce9 (diff) | |
download | op-kernel-dev-ea3807ea52a53f2cdfd60c89d8491fc9a8208d1c.zip op-kernel-dev-ea3807ea52a53f2cdfd60c89d8491fc9a8208d1c.tar.gz |
x86/apic: Fix ugly casting and branching in cpu_mask_to_apicid_and()
Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Cc: Suresh Siddha <suresh.b.siddha@intel.com>
Cc: Yinghai Lu <yinghai@kernel.org>
Link: http://lkml.kernel.org/r/20120614074954.GF3383@dhcp-26-207.brq.redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/kernel/apic/es7000_32.c')
-rw-r--r-- | arch/x86/kernel/apic/es7000_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/apic/es7000_32.c b/arch/x86/kernel/apic/es7000_32.c index 2c5317e..effece2 100644 --- a/arch/x86/kernel/apic/es7000_32.c +++ b/arch/x86/kernel/apic/es7000_32.c @@ -529,7 +529,7 @@ static inline int es7000_cpu_mask_to_apicid(const struct cpumask *cpumask, unsigned int *dest_id) { unsigned int round = 0; - int cpu, uninitialized_var(apicid); + unsigned int cpu, uninitialized_var(apicid); /* * The cpus in the mask must all be on the apic cluster. |