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

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
...@@ -125,15 +125,16 @@ u32 dss_of_port_get_port_number(struct device_node *port) ...@@ -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) 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); np = of_parse_phandle(node, "remote-endpoint", 0);
if (!np) if (!np)
return NULL; 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 * struct device_node *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment