mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
media: ti: j721e-csi2rx: Convert comma to semicolon
Replace a comma between expression statements by a semicolon.
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Fixes: b4a3d877dc
("media: ti: Add CSI2RX support for J721E")
Reviewed-by: Jai Luthra <j-luthra@ti.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
9755343cb2
commit
bcca6cb79a
1 changed files with 3 additions and 3 deletions
|
@ -1014,9 +1014,9 @@ static int ti_csi2rx_v4l2_init(struct ti_csi2rx_dev *csi)
|
|||
pix_fmt->height = 480;
|
||||
pix_fmt->field = V4L2_FIELD_NONE;
|
||||
pix_fmt->colorspace = V4L2_COLORSPACE_SRGB;
|
||||
pix_fmt->ycbcr_enc = V4L2_YCBCR_ENC_601,
|
||||
pix_fmt->quantization = V4L2_QUANTIZATION_LIM_RANGE,
|
||||
pix_fmt->xfer_func = V4L2_XFER_FUNC_SRGB,
|
||||
pix_fmt->ycbcr_enc = V4L2_YCBCR_ENC_601;
|
||||
pix_fmt->quantization = V4L2_QUANTIZATION_LIM_RANGE;
|
||||
pix_fmt->xfer_func = V4L2_XFER_FUNC_SRGB;
|
||||
|
||||
ti_csi2rx_fill_fmt(fmt, &csi->v_fmt);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue