Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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();