summaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorTravis Carter <traviscarter2@gmail.com>2020-12-05 00:51:50 +0100
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>2021-01-12 18:13:30 +0100
commit2c405f6bb5d65ec2e50eb97fd4f2d0c273306f26 (patch)
tree7ed8b507a72253fc7f08d9dc042189c5de764db7 /drivers/staging
parent4397efebf039be58e98c81a194a26100eba597bb (diff)
downloadlinux-stable-2c405f6bb5d65ec2e50eb97fd4f2d0c273306f26.tar.gz
linux-stable-2c405f6bb5d65ec2e50eb97fd4f2d0c273306f26.tar.bz2
linux-stable-2c405f6bb5d65ec2e50eb97fd4f2d0c273306f26.zip
media: staging:hantro: Fixed "replace comma with semicolon" Warning
Corrected the following Warning: drivers/staging/media/hantro/hantro_v4l2.c:319: WARNING: Possible comma where semicolon could be used Signed-off-by: Travis Carter <traviscarter2@gmail.com> Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/media/hantro/hantro_v4l2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/media/hantro/hantro_v4l2.c b/drivers/staging/media/hantro/hantro_v4l2.c
index b668a82d40ad..e1081c16f56a 100644
--- a/drivers/staging/media/hantro/hantro_v4l2.c
+++ b/drivers/staging/media/hantro/hantro_v4l2.c
@@ -316,7 +316,7 @@ hantro_reset_fmt(struct v4l2_pix_format_mplane *fmt,
fmt->pixelformat = vpu_fmt->fourcc;
fmt->field = V4L2_FIELD_NONE;
- fmt->colorspace = V4L2_COLORSPACE_JPEG,
+ fmt->colorspace = V4L2_COLORSPACE_JPEG;
fmt->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT;
fmt->quantization = V4L2_QUANTIZATION_DEFAULT;
fmt->xfer_func = V4L2_XFER_FUNC_DEFAULT;