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

Commit 2ab9f587 authored by Peter Chen's avatar Peter Chen Committed by Sean Paul
Browse files

gpu: drm: omapdrm: dss-of: add missing of_node_put after calling of_parse_phandle



of_node_put needs to be called when the device node which is got
from of_parse_phandle has finished using.

Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
Signed-off-by: default avatarPeter Chen <peter.chen@nxp.com>
Signed-off-by: default avatarSean Paul <seanpaul@chromium.org>
parent 0697a05f
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -125,15 +125,16 @@ u32 dss_of_port_get_port_number(struct device_node *port)

static struct device_node *omapdss_of_get_remote_port(const struct device_node *node)
{
	struct device_node *np;
	struct device_node *np, *np_parent;

	np = of_parse_phandle(node, "remote-endpoint", 0);
	if (!np)
		return NULL;

	np = of_get_next_parent(np);
	np_parent = of_get_next_parent(np);
	of_node_put(np);

	return np;
	return np_parent;
}

struct device_node *