powerpc/gamecube/wii: delete unneeded test before of_node_put
Simplify the error path to avoid calling of_node_put when it is not needed. Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
parent
498b651472
commit
6609ed14de
|
@ -247,7 +247,7 @@ void __init ug_udbg_init(void)
|
|||
np = of_find_compatible_node(NULL, NULL, "nintendo,flipper-exi");
|
||||
if (!np) {
|
||||
udbg_printf("%s: EXI node not found\n", __func__);
|
||||
goto done;
|
||||
goto out;
|
||||
}
|
||||
|
||||
exi_io_base = ug_udbg_setup_exi_io_base(np);
|
||||
|
@ -267,8 +267,8 @@ void __init ug_udbg_init(void)
|
|||
}
|
||||
|
||||
done:
|
||||
if (np)
|
||||
of_node_put(np);
|
||||
of_node_put(np);
|
||||
out:
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue