aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ia64
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-12-10 02:16:55 -0500
committerTony Luck <tony.luck@intel.com>2010-12-28 17:20:42 -0500
commite7d282535c94cddc208c03b7cd0815f70d676a0e (patch)
treef2df3e179b6a7ee3050f67550dc409b1bb2ca877 /arch/ia64
parent409e590572d980c314e989e94176bcb060130fae (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.c2
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)
168{ 168{
169 unsigned long new_itm; 169 unsigned long new_itm;
170 170
171 if (unlikely(cpu_is_offline(smp_processor_id()))) { 171 if (cpu_is_offline(smp_processor_id())) {
172 return IRQ_HANDLED; 172 return IRQ_HANDLED;
173 } 173 }
174 174