mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 08:47:44 -04:00
media: staging:rkvdec: Fixed "replace comma with semicolon" Warning
Corrected the following Warning: drivers/staging/media/rkvdec/rkvdec.c:133: WARNING: Possible comma where semicolon could be used Signed-off-by: Travis Carter <traviscarter2@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
2c405f6bb5
commit
a819678d0d
@@ -143,7 +143,7 @@ static void rkvdec_reset_fmt(struct rkvdec_ctx *ctx, struct v4l2_format *f,
|
||||
memset(f, 0, sizeof(*f));
|
||||
f->fmt.pix_mp.pixelformat = fourcc;
|
||||
f->fmt.pix_mp.field = V4L2_FIELD_NONE;
|
||||
f->fmt.pix_mp.colorspace = V4L2_COLORSPACE_REC709,
|
||||
f->fmt.pix_mp.colorspace = V4L2_COLORSPACE_REC709;
|
||||
f->fmt.pix_mp.ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT;
|
||||
f->fmt.pix_mp.quantization = V4L2_QUANTIZATION_DEFAULT;
|
||||
f->fmt.pix_mp.xfer_func = V4L2_XFER_FUNC_DEFAULT;
|
||||
|
||||
Reference in New Issue
Block a user