Browse Source

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

Signed-off-by: David S. Miller <davem@davemloft.net>
David S. Miller 19 years ago
parent
commit
abd92b2d21
1 changed files with 1 additions and 1 deletions
  1. 1 1
      arch/sparc64/kernel/irq.c

+ 1 - 1
arch/sparc64/kernel/irq.c

@@ -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);