aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/media/platform
diff options
context:
space:
mode:
authorPeter Chen <peter.chen@nxp.com>2016-07-15 06:33:06 -0300
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2016-11-18 14:23:33 -0200
commitb68002db13f57b16b6b9f9841d40b867c298ffe4 (patch)
treec9b696be91972bfe7bb6fb10475b2a309d9aa9d4 /drivers/media/platform
parent[media] blackfin: check devm_pinctrl_get() for errors (diff)
downloadwireguard-linux-b68002db13f57b16b6b9f9841d40b867c298ffe4.tar.xz
wireguard-linux-b68002db13f57b16b6b9f9841d40b867c298ffe4.zip
[media] media: platform: ti-vpe: call of_node_put on non-null pointer
It should call of_node_put on non-null poiner. Cc: Mauro Carvalho Chehab <mchehab@kernel.org> Signed-off-by: Peter Chen <peter.chen@nxp.com> Acked-by: Benoit Parrot <bparrot@ti.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/platform')
-rw-r--r--drivers/media/platform/ti-vpe/cal.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/platform/ti-vpe/cal.c b/drivers/media/platform/ti-vpe/cal.c
index b2d166b2221a..7a058b6e03d0 100644
--- a/drivers/media/platform/ti-vpe/cal.c
+++ b/drivers/media/platform/ti-vpe/cal.c
@@ -1745,13 +1745,13 @@ static int of_cal_create_instance(struct cal_ctx *ctx, int inst)
}
cleanup_exit:
- if (!remote_ep)
+ if (remote_ep)
of_node_put(remote_ep);
- if (!sensor_node)
+ if (sensor_node)
of_node_put(sensor_node);
- if (!ep_node)
+ if (ep_node)
of_node_put(ep_node);
- if (!port)
+ if (port)
of_node_put(port);
return ret;