提交 6609ed14 编写于 作者: J Julia Lawall 提交者: Michael Ellerman

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: NJulia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: NMichael Ellerman <mpe@ellerman.id.au>
上级 498b6514
......@@ -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;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册