[media] V4L: Use NULL pointer instead of plain integer in v4l2-ctrls.c file
authorSachin Kamat <[email protected]>
Tue, 10 Jul 2012 10:14:46 +0000 (07:14 -0300)
committerMauro Carvalho Chehab <[email protected]>
Mon, 30 Jul 2012 22:54:53 +0000 (19:54 -0300)
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 <[email protected]>
Acked-by: Hans Verkuil <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
drivers/media/video/v4l2-ctrls.c

index babfb13dc7f2ceeb3c00efd45256897db0aac30d..b6a2ee71e5c300cead8a4d77cb4e627c687a476e 100644 (file)
@@ -2121,7 +2121,7 @@ static int prepare_ext_ctrls(struct v4l2_ctrl_handler *hdl,
 
        /* First zero the helper field in the master control references */
        for (i = 0; i < cs->count; i++)
-               helpers[i].mref->helper = 0;
+               helpers[i].mref->helper = NULL;
        for (i = 0, h = helpers; i < cs->count; i++, h++) {
                struct v4l2_ctrl_ref *mref = h->mref;