media: staging: media: ipu3: add missing kernel-doc 'struct' keywords

Two structs where missing the kernel-doc 'struct' keyword
in their kernel-doc documentation.

Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Cc: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
Hans Verkuil
2021-03-11 11:20:17 +01:00
committed by Mauro Carvalho Chehab
parent 75e2ddb181
commit 328085e1dc

View File

@@ -10,7 +10,7 @@ struct imgu_device;
#define IPU3_CSS_POOL_SIZE 4 #define IPU3_CSS_POOL_SIZE 4
/** /**
* imgu_css_map - store DMA mapping info for buffer * struct imgu_css_map - store DMA mapping info for buffer
* *
* @size: size of the buffer in bytes. * @size: size of the buffer in bytes.
* @vaddr: kernel virtual address. * @vaddr: kernel virtual address.
@@ -24,7 +24,7 @@ struct imgu_css_map {
}; };
/** /**
* imgu_css_pool - circular buffer pool definition * struct imgu_css_pool - circular buffer pool definition
* *
* @entry: array with IPU3_CSS_POOL_SIZE elements. * @entry: array with IPU3_CSS_POOL_SIZE elements.
* @entry.param: a &struct imgu_css_map for storing the mem mapping. * @entry.param: a &struct imgu_css_map for storing the mem mapping.