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

Commit 6609ed14 authored by Julia Lawall's avatar Julia Lawall Committed by Michael Ellerman
Browse files

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: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 498b6514
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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);
out:
	return;
}