Commit 41d1f1b0 authored by Aline Santana Cordeiro's avatar Aline Santana Cordeiro Committed by Mauro Carvalho Chehab
Browse files

media: staging: media: atomisp: pci: Balance braces around conditional...


media: staging: media: atomisp: pci: Balance braces around conditional statements in file atomisp_subdev.c

Balance braces around conditional statements.
Issue detected by checkpatch.pl.
It happens in if-else statements where one of the commands
uses braces around a block of code and the other command
does not since it has just a single line of code.

Signed-off-by: default avatarAline Santana Cordeiro <alinesantanacordeiro@gmail.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent b6465b1d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -472,9 +472,9 @@ int atomisp_subdev_set_selection(struct v4l2_subdev *sd,
			 * when dvs is disabled.
			 */
			dvs_w = dvs_h = 12;
		} else
		} else {
			dvs_w = dvs_h = 0;

		}
		atomisp_css_video_set_dis_envelope(isp_sd, dvs_w, dvs_h);
		atomisp_css_input_set_effective_resolution(isp_sd, stream_id,
			crop[pad]->width, crop[pad]->height);