aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/fbdev
diff options
context:
space:
mode:
authorJyri Sarha <jsarha@ti.com>2015-08-07 14:04:29 +0300
committerTomi Valkeinen <tomi.valkeinen@ti.com>2015-08-10 12:22:35 +0300
commit2b55cb3b04684f131a01faf2eb8e4d822d293f24 (patch)
tree82911e142ddc445dd2759f940b9be443af2938a5 /drivers/video/fbdev
parentfbdev: select versatile helpers for the integrator (diff)
downloadlinux-dev-2b55cb3b04684f131a01faf2eb8e4d822d293f24.tar.xz
linux-dev-2b55cb3b04684f131a01faf2eb8e4d822d293f24.zip
OMAPDSS: Fix node refcount leak in omapdss_of_get_next_port()
Fix node refcount leak in omapdss_of_get_next_port(). Signed-off-by: Jyri Sarha <jsarha@ti.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/fbdev')
-rw-r--r--drivers/video/fbdev/omap2/dss/dss-of.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/fbdev/omap2/dss/dss-of.c b/drivers/video/fbdev/omap2/dss/dss-of.c
index 928ee639c0c1..c8c065d92b59 100644
--- a/drivers/video/fbdev/omap2/dss/dss-of.c
+++ b/drivers/video/fbdev/omap2/dss/dss-of.c
@@ -60,6 +60,8 @@ omapdss_of_get_next_port(const struct device_node *parent,
}
prev = port;
} while (of_node_cmp(port->name, "port") != 0);
+
+ of_node_put(ports);
}
return port;