Commit 047d39c4 authored by Martiros Shakhzadyan's avatar Martiros Shakhzadyan Committed by Mauro Carvalho Chehab
Browse files

media: staging: media: atomisp: Removed a superfluous else clause



Fixed a coding style issue.

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 d58f75de
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -774,11 +774,11 @@ static int ov2722_s_power(struct v4l2_subdev *sd, int on)

	if (on == 0)
		return power_down(sd);
	else {

	ret = power_up(sd);
	if (!ret)
		return ov2722_init(sd);
	}

	return ret;
}