Commit b6465b1d 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_compat_css20.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 0a016c35
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2782,9 +2782,9 @@ int atomisp_get_css_frame_info(struct atomisp_sub_device *asd,
	int stream_index;
	struct atomisp_device *isp = asd->isp;

	if (ATOMISP_SOC_CAMERA(asd))
	if (ATOMISP_SOC_CAMERA(asd)) {
		stream_index = atomisp_source_pad_to_stream_id(asd, source_pad);
	else {
	} else {
		stream_index = (pipe_index == IA_CSS_PIPE_ID_YUVPP) ?
			       ATOMISP_INPUT_STREAM_VIDEO :
			       atomisp_source_pad_to_stream_id(asd, source_pad);