Commit 01049493 authored by Joe Perches's avatar Joe Perches Committed by Mauro Carvalho Chehab

media: atomisp: Avoid comma separated statements

Use semicolons and braces.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent c1bca5b5
......@@ -410,8 +410,10 @@ int atomisp_subdev_set_selection(struct v4l2_subdev *sd,
if (atomisp_subdev_format_conversion(isp_sd,
isp_sd->capture_pad)
&& crop[pad]->width && crop[pad]->height)
crop[pad]->width -= padding_w, crop[pad]->height -= padding_h;
&& crop[pad]->width && crop[pad]->height) {
crop[pad]->width -= padding_w;
crop[pad]->height -= padding_h;
}
/* if subdev type is SOC camera,we do not need to set DVS */
if (isp->inputs[isp_sd->input_curr].type == SOC_CAMERA)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment