projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c9205e1
)
[media] media: platform: ti-vpe: call of_node_put on non-null pointer
author
Peter Chen
<peter.chen@nxp.com>
Fri, 15 Jul 2016 09:33:06 +0000
(06:33 -0300)
committer
Mauro Carvalho Chehab
<mchehab@s-opensource.com>
Fri, 18 Nov 2016 16:23:33 +0000
(14:23 -0200)
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>
drivers/media/platform/ti-vpe/cal.c
patch
|
blob
|
history
diff --git
a/drivers/media/platform/ti-vpe/cal.c
b/drivers/media/platform/ti-vpe/cal.c
index b2d166b2221abfd21554d01472fddf791a24fac2..7a058b6e03d0ff2f6cdc6699912d3809c8824309 100644
(file)
--- 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;