Commit 9d634547 authored by Martiros Shakhzadyan's avatar Martiros Shakhzadyan Committed by Mauro Carvalho Chehab
Browse files

media: staging: media: atomisp: Remove a superfluous else clause in sh_css.c



Remove a superfluous else clause in ia_css_pipe_check_format()

Signed-off-by: default avatarMartiros Shakhzadyan <vrzh@vrzh.net>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent dfdd8ceb
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -5247,12 +5247,10 @@ ia_css_pipe_check_format(struct ia_css_pipe *pipe,
		IA_CSS_ERROR("Requested format is not supported by binary");
		IA_CSS_LEAVE_ERR_PRIVATE(-EINVAL);
		return -EINVAL;
	} else
	{
	}
	IA_CSS_LEAVE_ERR_PRIVATE(0);
	return 0;
}
}

static int load_video_binaries(struct ia_css_pipe *pipe)
{