Commit e7d28253 authored by Joe Perches's avatar Joe Perches Committed by Tony Luck

[IA64] Remove unlikely from cpu_is_offline

cpu_is_offline already uses unlikely internally.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent 409e5905
...@@ -168,7 +168,7 @@ timer_interrupt (int irq, void *dev_id) ...@@ -168,7 +168,7 @@ timer_interrupt (int irq, void *dev_id)
{ {
unsigned long new_itm; unsigned long new_itm;
if (unlikely(cpu_is_offline(smp_processor_id()))) { if (cpu_is_offline(smp_processor_id())) {
return IRQ_HANDLED; return IRQ_HANDLED;
} }
......
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