Commit c673e80e authored by Jesse Barnes's avatar Jesse Barnes Committed by David Mosberger

[PATCH] ia64: bitshift fix

I think there are other 64p issues in other places, but we found this
one while doing 2.5 bringup on hardware.
parent 1626bd5b
......@@ -452,7 +452,7 @@ smp_build_cpu_map (void)
sapicid = smp_boot_data.cpu_phys_id[i];
if (sapicid == boot_cpu_id)
continue;
phys_cpu_present_map |= (1 << cpu);
phys_cpu_present_map |= (1UL << cpu);
ia64_cpu_to_sapicid[cpu] = sapicid;
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