Skip to content
Snippets Groups Projects
Commit e8c9e788 authored by Srivatsa S. Bhat's avatar Srivatsa S. Bhat Committed by Konrad Rzeszutek Wilk
Browse files

xen/smp: Remove unnecessary call to smp_processor_id()


There is an extra and unnecessary call to smp_processor_id()
in cpu_bringup(). Remove it.

Signed-off-by: default avatarSrivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Signed-off-by: default avatarKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
parent 2531d64b
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ static irqreturn_t xen_reschedule_interrupt(int irq, void *dev_id)
static void __cpuinit cpu_bringup(void)
{
int cpu = smp_processor_id();
int cpu;
cpu_init();
touch_softlockup_watchdog();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment