Commit 7bc69c96 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab

media: ti-vpe/cal.h: fix kernel-doc formatting

Fix inline struct member documentation, was missing the
'@memb:' prefix.
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Reviewed-by: default avatarTomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 89e078b5
...@@ -84,35 +84,34 @@ struct cal_buffer { ...@@ -84,35 +84,34 @@ struct cal_buffer {
/** /**
* struct cal_dmaqueue - Queue of DMA buffers * struct cal_dmaqueue - Queue of DMA buffers
* @active: Buffer being DMA'ed to for the current frame
*/ */
struct cal_dmaqueue { struct cal_dmaqueue {
/** /**
* Protects all fields in the cal_dmaqueue. * @lock: Protects all fields in the cal_dmaqueue.
*/ */
spinlock_t lock; spinlock_t lock;
/** /**
* Buffers queued to the driver and waiting for DMA processing. * @queue: Buffers queued to the driver and waiting for DMA processing.
* Buffers are added to the list by the vb2 .buffer_queue() operation, * Buffers are added to the list by the vb2 .buffer_queue() operation,
* and move to @pending when they are scheduled for the next frame. * and move to @pending when they are scheduled for the next frame.
*/ */
struct list_head queue; struct list_head queue;
/** /**
* Buffer provided to the hardware to DMA the next frame. Will move to * @pending: Buffer provided to the hardware to DMA the next frame.
* @active at the end of the current frame. * Will move to @active at the end of the current frame.
*/ */
struct cal_buffer *pending; struct cal_buffer *pending;
/** /**
* Buffer being DMA'ed to for the current frame. Will be retired and * @active: Buffer being DMA'ed to for the current frame. Will be
* given back to vb2 at the end of the current frame if a @pending * retired and given back to vb2 at the end of the current frame if
* buffer has been scheduled to replace it. * a @pending buffer has been scheduled to replace it.
*/ */
struct cal_buffer *active; struct cal_buffer *active;
/** State of the DMA engine. */ /** @state: State of the DMA engine. */
enum cal_dma_state state; enum cal_dma_state state;
/** Wait queue to signal a @state transition to CAL_DMA_STOPPED. */ /** @wait: Wait queue to signal a @state transition to CAL_DMA_STOPPED. */
struct wait_queue_head wait; struct wait_queue_head wait;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment