Skip to content

Commit

Permalink
[IA64] Remove unlikely from cpu_is_offline
Browse files Browse the repository at this point in the history
cpu_is_offline already uses unlikely internally.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
  • Loading branch information
Joe Perches authored and Tony Luck committed Dec 28, 2010
1 parent 409e590 commit e7d2825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/ia64/kernel/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ timer_interrupt (int irq, void *dev_id)
{
unsigned long new_itm;

if (unlikely(cpu_is_offline(smp_processor_id()))) {
if (cpu_is_offline(smp_processor_id())) {
return IRQ_HANDLED;
}

Expand Down

0 comments on commit e7d2825

Please sign in to comment.