diff options
author | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2021-03-11 13:20:11 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2021-03-22 14:53:22 +0300 |
commit | 89e078b510bd7c4daf0c255ef8360fd0554e92aa (patch) | |
tree | ff5816d9673ff604178c98855316fb4bcb16a915 /drivers/media/platform/s5p-jpeg | |
parent | 0ae4ff019ccd60057a3d12dd0c987b3863b77e27 (diff) | |
download | linux-89e078b510bd7c4daf0c255ef8360fd0554e92aa.tar.xz |
media: s5p-jpeg: fix kernel-doc warnings
- added missing 'struct' kernel-doc keywords
- add missing '*' in kernel-doc comment blocks
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media/platform/s5p-jpeg')
-rw-r--r-- | drivers/media/platform/s5p-jpeg/jpeg-core.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/drivers/media/platform/s5p-jpeg/jpeg-core.h b/drivers/media/platform/s5p-jpeg/jpeg-core.h index 4407fe775afa..fcd21ae8bcbe 100644 --- a/drivers/media/platform/s5p-jpeg/jpeg-core.h +++ b/drivers/media/platform/s5p-jpeg/jpeg-core.h @@ -115,8 +115,7 @@ enum s5p_jpeg_ctx_state { * @dev: JPEG IP struct device * @variant: driver variant to be used * @irq_status interrupt flags set during single encode/decode - operation - + * operation */ struct s5p_jpeg { struct mutex lock; @@ -149,7 +148,7 @@ struct s5p_jpeg_variant { }; /** - * struct jpeg_fmt - driver's internal color format data + * struct s5p_jpeg_fmt - driver's internal color format data * @fourcc: the fourcc code, 0 if not applicable * @depth: number of bits per pixel * @colplanes: number of color planes (1 for packed formats) @@ -169,7 +168,7 @@ struct s5p_jpeg_fmt { }; /** - * s5p_jpeg_marker - collection of markers from jpeg header + * struct s5p_jpeg_marker - collection of markers from jpeg header * @marker: markers' positions relative to the buffer beginning * @len: markers' payload lengths (without length field) * @n: number of markers in collection @@ -181,7 +180,7 @@ struct s5p_jpeg_marker { }; /** - * s5p_jpeg_q_data - parameters of one queue + * struct s5p_jpeg_q_data - parameters of one queue * @fmt: driver-specific format of this queue * @w: image width * @h: image height @@ -205,7 +204,7 @@ struct s5p_jpeg_q_data { }; /** - * s5p_jpeg_ctx - the device context data + * struct s5p_jpeg_ctx - the device context data * @jpeg: JPEG IP device for this context * @mode: compression (encode) operation or decompression (decode) * @compr_quality: destination image quality in compression (encode) mode @@ -239,7 +238,7 @@ struct s5p_jpeg_ctx { }; /** - * s5p_jpeg_buffer - description of memory containing input JPEG data + * struct s5p_jpeg_buffer - description of memory containing input JPEG data * @size: buffer size * @curr: current position in the buffer * @data: pointer to the data |