diff options
author | Joe Perches <joe@perches.com> | 2010-12-09 23:16:55 -0800 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2010-12-28 14:20:42 -0800 |
commit | e7d282535c94cddc208c03b7cd0815f70d676a0e (patch) | |
tree | f2df3e179b6a7ee3050f67550dc409b1bb2ca877 /arch/ia64 | |
parent | 409e590572d980c314e989e94176bcb060130fae (diff) |
[IA64] Remove unlikely from cpu_is_offline
cpu_is_offline already uses unlikely internally.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/kernel/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/kernel/time.c b/arch/ia64/kernel/time.c index ed6f22eb5b12..9702fa92489e 100644 --- a/arch/ia64/kernel/time.c +++ b/arch/ia64/kernel/time.c @@ -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; } |