mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
media: s3c-camif/camif-core.h: fix kernel-doc warnings
Fixes these warnings: drivers/media/platform/s3c-camif/camif-core.h:156: warning: Function parameter or member 'pix_limits' not described in 's3c_camif_variant' drivers/media/platform/s3c-camif/camif-core.h:156: warning: Function parameter or member 'has_img_effect' not described in 's3c_camif_variant' drivers/media/platform/s3c-camif/camif-core.h:156: warning: Function parameter or member 'vp_offset' not described in 's3c_camif_variant' drivers/media/platform/s3c-camif/camif-core.h:232: warning: Function parameter or member 'vdev' not described in 'camif_vp' drivers/media/platform/s3c-camif/camif-core.h:232: warning: Function parameter or member 'vb_queue' not described in 'camif_vp' drivers/media/platform/s3c-camif/camif-core.h:232: warning: Function parameter or member 'offset' not described in 'camif_vp' drivers/media/platform/s3c-camif/camif-core.h:297: warning: Function parameter or member 'ctrl_test_pattern' not described in 'camif_dev' drivers/media/platform/s3c-camif/camif-core.h:297: warning: Function parameter or member 'ctrl_colorfx' not described in 'camif_dev' drivers/media/platform/s3c-camif/camif-core.h:297: warning: Function parameter or member 'ctrl_colorfx_cbcr' not described in 'camif_dev' drivers/media/platform/s3c-camif/camif-core.h:297: warning: Function parameter or member 'colorfx' not described in 'camif_dev' drivers/media/platform/s3c-camif/camif-core.h:297: warning: Function parameter or member 'colorfx_cb' not described in 'camif_dev' drivers/media/platform/s3c-camif/camif-core.h:297: warning: Function parameter or member 'colorfx_cr' not described in 'camif_dev' Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
43cd53eb4a
commit
6e77c678f2
@ -144,8 +144,10 @@ struct camif_pix_limits {
|
|||||||
/**
|
/**
|
||||||
* struct s3c_camif_variant - CAMIF variant structure
|
* struct s3c_camif_variant - CAMIF variant structure
|
||||||
* @vp_pix_limits: pixel limits for the codec and preview paths
|
* @vp_pix_limits: pixel limits for the codec and preview paths
|
||||||
* @camif_pix_limits: pixel limits for the camera input interface
|
* @pix_limits: pixel limits for the camera input interface
|
||||||
* @ip_revision: the CAMIF IP revision: 0x20 for s3c244x, 0x32 for s3c6410
|
* @ip_revision: the CAMIF IP revision: 0x20 for s3c244x, 0x32 for s3c6410
|
||||||
|
* @has_img_effect: supports image effects
|
||||||
|
* @vp_offset: register offset
|
||||||
*/
|
*/
|
||||||
struct s3c_camif_variant {
|
struct s3c_camif_variant {
|
||||||
struct vp_pix_limits vp_pix_limits[2];
|
struct vp_pix_limits vp_pix_limits[2];
|
||||||
@ -183,9 +185,10 @@ struct camif_dev;
|
|||||||
* @irq: interrupt number for this data path
|
* @irq: interrupt number for this data path
|
||||||
* @camif: pointer to the camif structure
|
* @camif: pointer to the camif structure
|
||||||
* @pad: media pad for the video node
|
* @pad: media pad for the video node
|
||||||
* @vdev video device
|
* @vdev: video device
|
||||||
* @ctrl_handler: video node controls handler
|
* @ctrl_handler: video node controls handler
|
||||||
* @owner: file handle that own the streaming
|
* @owner: file handle that own the streaming
|
||||||
|
* @vb_queue: vb2 buffer queue
|
||||||
* @pending_buf_q: pending (empty) buffers queue head
|
* @pending_buf_q: pending (empty) buffers queue head
|
||||||
* @active_buf_q: active (being written) buffers queue head
|
* @active_buf_q: active (being written) buffers queue head
|
||||||
* @active_buffers: counter of buffer set up at the DMA engine
|
* @active_buffers: counter of buffer set up at the DMA engine
|
||||||
@ -202,6 +205,7 @@ struct camif_dev;
|
|||||||
* @rotation: current image rotation value
|
* @rotation: current image rotation value
|
||||||
* @hflip: apply horizontal flip if set
|
* @hflip: apply horizontal flip if set
|
||||||
* @vflip: apply vertical flip if set
|
* @vflip: apply vertical flip if set
|
||||||
|
* @offset: register offset
|
||||||
*/
|
*/
|
||||||
struct camif_vp {
|
struct camif_vp {
|
||||||
wait_queue_head_t irq_queue;
|
wait_queue_head_t irq_queue;
|
||||||
@ -248,7 +252,13 @@ struct camif_vp {
|
|||||||
* @sensor: image sensor data structure
|
* @sensor: image sensor data structure
|
||||||
* @m_pipeline: video entity pipeline description
|
* @m_pipeline: video entity pipeline description
|
||||||
* @ctrl_handler: v4l2 control handler (owned by @subdev)
|
* @ctrl_handler: v4l2 control handler (owned by @subdev)
|
||||||
* @test_pattern: test pattern controls
|
* @ctrl_test_pattern: V4L2_CID_TEST_PATTERN control
|
||||||
|
* @ctrl_colorfx: V4L2_CID_COLORFX control
|
||||||
|
* @ctrl_colorfx_cbcr: V4L2_CID_COLORFX_CBCR control
|
||||||
|
* @test_pattern: test pattern
|
||||||
|
* @colorfx: color effect
|
||||||
|
* @colorfx_cb: Cb value for V4L2_COLORFX_SET_CBCR
|
||||||
|
* @colorfx_cr: Cr value for V4L2_COLORFX_SET_CBCR
|
||||||
* @vp: video path (DMA) description (codec/preview)
|
* @vp: video path (DMA) description (codec/preview)
|
||||||
* @variant: variant information for this device
|
* @variant: variant information for this device
|
||||||
* @dev: pointer to the CAMIF device struct
|
* @dev: pointer to the CAMIF device struct
|
||||||
|
Loading…
Reference in New Issue
Block a user