Commit abd92b2d authored by David S. Miller's avatar David S. Miller
Browse files

[SPARC64]: Fix sun4v_intr_setenabled() return value check in enable_irq().

parent 355db998
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -160,7 +160,7 @@ void enable_irq(unsigned int irq)
		if (err != HV_EOK)
			printk("sun4v_intr_settarget(%x,%d): err(%d)\n",
			       ino, cpu, err);
		sun4v_intr_setenabled(ino, HV_INTR_ENABLED);
		err = sun4v_intr_setenabled(ino, HV_INTR_ENABLED);
		if (err != HV_EOK)
			printk("sun4v_intr_setenabled(%x): err(%d)\n",
			       ino, err);