[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: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
Родитель
63ea9c1710
Коммит
ded84bcb24
|
@ -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));
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче