video: fbdev: pxafb: add missing of_node_put() in of_get_pxafb_mode_info()
authorWei Yongjun <weiyj.lk@gmail.com>
Sat, 13 Aug 2016 08:57:23 +0000 (08:57 +0000)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Tue, 30 Aug 2016 09:04:16 +0000 (12:04 +0300)
This node pointer is returned by of_graph_get_next_endpoint() with
refcount incremented in this function. of_node_put() on it before
exitting this function.

Found by Coccinelle.

Signed-off-by: Wei Yongjun <weiyj.lk@gmail.com>
Acked-by: Robert Jarzmik <robert.jarzmik@free.fr>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/video/fbdev/pxafb.c

index ed41fdb..ef73f14 100644 (file)
@@ -2186,6 +2186,7 @@ static int of_get_pxafb_mode_info(struct device *dev,
        ret = of_property_read_u32(np, "bus-width", &bus_width);
        if (ret) {
                dev_err(dev, "no bus-width specified: %d\n", ret);
+               of_node_put(np);
                return ret;
        }