diff options
author | Peter Chen <peter.chen@nxp.com> | 2016-07-04 22:04:51 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2016-07-12 09:44:04 -0400 |
commit | 5d950ef3f327db7872c80d45a33209fd8521f4bd (patch) | |
tree | 86ae79d5fd1a4d3a6a7c64cef6bc4a2d81d61be3 | |
parent | f33dd64a93ba2efa58c58e5b2ce8fc7b7efa5f3c (diff) |
gpu: drm: sti_hqvdp: 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: Benjamin Gaignard <benjamin.gaignard@linaro.org>
Cc: Vincent Abriou <vincent.abriou@st.com>
Signed-off-by: Peter Chen <peter.chen@nxp.com>
Acked-by: Benjamin Gaignard <benjamin.gaignard@linaro.org>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/1467684294-20111-5-git-send-email-peter.chen@nxp.com
-rw-r--r-- | drivers/gpu/drm/sti/sti_hqvdp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/sti/sti_hqvdp.c b/drivers/gpu/drm/sti/sti_hqvdp.c index 33d2f42550cc..b03232247966 100644 --- a/drivers/gpu/drm/sti/sti_hqvdp.c +++ b/drivers/gpu/drm/sti/sti_hqvdp.c | |||
@@ -1363,6 +1363,7 @@ static int sti_hqvdp_probe(struct platform_device *pdev) | |||
1363 | vtg_np = of_parse_phandle(pdev->dev.of_node, "st,vtg", 0); | 1363 | vtg_np = of_parse_phandle(pdev->dev.of_node, "st,vtg", 0); |
1364 | if (vtg_np) | 1364 | if (vtg_np) |
1365 | hqvdp->vtg = of_vtg_find(vtg_np); | 1365 | hqvdp->vtg = of_vtg_find(vtg_np); |
1366 | of_node_put(vtg_np); | ||
1366 | 1367 | ||
1367 | platform_set_drvdata(pdev, hqvdp); | 1368 | platform_set_drvdata(pdev, hqvdp); |
1368 | 1369 | ||