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

Commit ded84bcb authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Paul Mackerras
Browse files

[POWERPC] ps3_free_io_irq: Fix inverted error check



ps3_free_io_irq: Fix inverted error check after calling
lv1_destruct_io_irq_outlet().

Signed-off-by: default avatarGeert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 63ea9c17
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ int ps3_free_io_irq(unsigned int virq)

	result = lv1_destruct_io_irq_outlet(virq_to_hw(virq));

	if (!result)
	if (result)
		pr_debug("%s:%d: lv1_destruct_io_irq_outlet failed: %s\n",
			__func__, __LINE__, ps3_result(result));