aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@s-opensource.com>2017-11-29 10:15:53 -0500
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2017-11-30 04:19:03 -0500
commit538cf6437af951f84cc816d63aafeafc61eb40c1 (patch)
treef63a43ae4afd6c2bb687ede7fb532a455bedd600
parent2afe216d3d88b729c40d83abce5b2d4b72d289c5 (diff)
media: rcar_jpu: fix two kernel-doc markups
On kernel-doc, struct declarations should be declared as "struct foo". Fix the following warnings: drivers/media/platform/rcar_jpu.c:265: warning: cannot understand function prototype: 'struct jpu_q_data ' drivers/media/platform/rcar_jpu.c:281: warning: cannot understand function prototype: 'struct jpu_ctx ' Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
-rw-r--r--drivers/media/platform/rcar_jpu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/platform/rcar_jpu.c b/drivers/media/platform/rcar_jpu.c
index 070bac36d766..f6092ae45912 100644
--- a/drivers/media/platform/rcar_jpu.c
+++ b/drivers/media/platform/rcar_jpu.c
@@ -257,7 +257,7 @@ struct jpu_fmt {
257}; 257};
258 258
259/** 259/**
260 * jpu_q_data - parameters of one queue 260 * struct jpu_q_data - parameters of one queue
261 * @fmtinfo: driver-specific format of this queue 261 * @fmtinfo: driver-specific format of this queue
262 * @format: multiplanar format of this queue 262 * @format: multiplanar format of this queue
263 * @sequence: sequence number 263 * @sequence: sequence number
@@ -269,7 +269,7 @@ struct jpu_q_data {
269}; 269};
270 270
271/** 271/**
272 * jpu_ctx - the device context data 272 * struct jpu_ctx - the device context data
273 * @jpu: JPEG IP device for this context 273 * @jpu: JPEG IP device for this context
274 * @encoder: compression (encode) operation or decompression (decode) 274 * @encoder: compression (encode) operation or decompression (decode)
275 * @compr_quality: destination image quality in compression (encode) mode 275 * @compr_quality: destination image quality in compression (encode) mode