media: atomisp: i2c: atomisp-ov2680.c: fixed a brace coding style issue.
Fixed a coding style issue. Signed-off-by: B K Karthik <karthik.bk2000@live.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
fb2595456d
commit
b6b415a801
|
@ -495,11 +495,11 @@ static int ov2680_h_flip(struct v4l2_subdev *sd, s32 value)
|
|||
ret = ov2680_read_reg(client, 1, OV2680_MIRROR_REG, &val);
|
||||
if (ret)
|
||||
return ret;
|
||||
if (value) {
|
||||
if (value)
|
||||
val |= OV2680_FLIP_MIRROR_BIT_ENABLE;
|
||||
} else {
|
||||
else
|
||||
val &= ~OV2680_FLIP_MIRROR_BIT_ENABLE;
|
||||
}
|
||||
|
||||
ret = ov2680_write_reg(client, 1,
|
||||
OV2680_MIRROR_REG, val);
|
||||
if (ret)
|
||||
|
|
Loading…
Reference in New Issue