]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
[media] DocBook: Remove a warning at videobuf2-v4l2.h
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>
Thu, 1 Oct 2015 17:23:35 +0000 (14:23 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Thu, 1 Oct 2015 17:23:35 +0000 (14:23 -0300)
There's no need to document to_foo() macros, and the macro is
badly documented anyway. That removes this warning:
include/media/videobuf2-v4l2.h:43: warning: No description found for parameter 'vb'

While here, remove the parenthesis for container_of(). The
countainer_of() already have parenthesis inside it.

Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
include/media/videobuf2-v4l2.h

index 20d8ad20066ccf6bb547fed4945bebaf7c94c7cf..71f7fe2706b31e7b91b6168f3c93eaf2dbaa9f55 100644 (file)
@@ -36,10 +36,10 @@ struct vb2_v4l2_buffer {
        __u32                   sequence;
 };
 
-/**
+/*
  * to_vb2_v4l2_buffer() - cast struct vb2_buffer * to struct vb2_v4l2_buffer *
  */
 #define to_vb2_v4l2_buffer(vb) \
-       (container_of(vb, struct vb2_v4l2_buffer, vb2_buf))
+       container_of(vb, struct vb2_v4l2_buffer, vb2_buf)
 
 #endif /* _MEDIA_VIDEOBUF2_V4L2_H */