OSDN Git Service

drm/komeda: Add missing of_node_get() call
authorMihail Atanassov <Mihail.Atanassov@arm.com>
Tue, 20 Aug 2019 15:16:58 +0000 (15:16 +0000)
committerAyan kumar halder <ayan.halder@arm.com>
Fri, 23 Aug 2019 13:53:32 +0000 (14:53 +0100)
komeda_pipeline_destroy has the matching of_node_put().

Fixes: 29e56aec911dd ("drm/komeda: Add DT parsing")
Signed-off-by: Mihail Atanassov <mihail.atanassov@arm.com>
Reviewed-by: Ayan Kumar Halder <ayan.halder@arm.com>
[Rebased on the latest drm-misc-fixes]
Signed-off-by: Ayan Kumar Halder <ayan.halder@arm.com>
Link: https://patchwork.freedesktop.org/patch/325278/
Change-Id: I5fa2479d6cb3a77182f1a92833c1c0bca8668cb4

drivers/gpu/drm/arm/display/komeda/komeda_dev.c

index a0eabc1..9d4d507 100644 (file)
@@ -127,7 +127,7 @@ static int komeda_parse_pipe_dt(struct komeda_dev *mdev, struct device_node *np)
        pipe->of_output_port =
                of_graph_get_port_by_id(np, KOMEDA_OF_PORT_OUTPUT);
 
-       pipe->of_node = np;
+       pipe->of_node = of_node_get(np);
 
        return 0;
 }