aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/v4l2-ctrls.c
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2012-07-10 06:14:46 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-07-30 18:54:53 -0400
commitc082266f60b749fa55074ee4c8b2ea99e4b59320 (patch)
tree82a912d08c071fe1288b81847344a214332afc06 /drivers/media/video/v4l2-ctrls.c
parent6f45b1b9f7e16453c72ad3a8f7bdbc4c8d716839 (diff)
[media] V4L: Use NULL pointer instead of plain integer in v4l2-ctrls.c file
Fixes the following sparse warning: drivers/media/video/v4l2-ctrls.c:2123:43: warning: Using plain integer as NULL pointer Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Acked-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/v4l2-ctrls.c')
-rw-r--r--drivers/media/video/v4l2-ctrls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/v4l2-ctrls.c b/drivers/media/video/v4l2-ctrls.c
index babfb13dc7f2..b6a2ee71e5c3 100644
--- a/drivers/media/video/v4l2-ctrls.c
+++ b/drivers/media/video/v4l2-ctrls.c
@@ -2121,7 +2121,7 @@ static int prepare_ext_ctrls(struct v4l2_ctrl_handler *hdl,
2121 2121
2122 /* First zero the helper field in the master control references */ 2122 /* First zero the helper field in the master control references */
2123 for (i = 0; i < cs->count; i++) 2123 for (i = 0; i < cs->count; i++)
2124 helpers[i].mref->helper = 0; 2124 helpers[i].mref->helper = NULL;
2125 for (i = 0, h = helpers; i < cs->count; i++, h++) { 2125 for (i = 0, h = helpers; i < cs->count; i++, h++) {
2126 struct v4l2_ctrl_ref *mref = h->mref; 2126 struct v4l2_ctrl_ref *mref = h->mref;
2127 2127