summaryrefslogtreecommitdiff
path: root/drivers/staging/media/atomisp/pci
diff options
context:
space:
mode:
authorAnkit Baluni <b18007@students.iitmandi.ac.in>2020-07-29 11:05:16 +0300
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>2020-09-03 11:58:35 +0300
commitd221d209470a5b2e00722e977c02a91ade23f42f (patch)
tree14c73cbbc4a2d2656431d89843300ba6f8385994 /drivers/staging/media/atomisp/pci
parent7e023a1cc295d0a08a1e800e3c791e2731dd42ae (diff)
downloadlinux-d221d209470a5b2e00722e977c02a91ade23f42f.tar.xz
media: atomisp: fix a brace coding sytle issue
Removed braces in 'if else' condition as it only consists of one line each and according to coding style rules , in this case the braces are not required. Signed-off-by: Ankit Baluni <b18007@students.iitmandi.ac.in> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/staging/media/atomisp/pci')
-rw-r--r--drivers/staging/media/atomisp/pci/atomisp_ioctl.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/staging/media/atomisp/pci/atomisp_ioctl.c b/drivers/staging/media/atomisp/pci/atomisp_ioctl.c
index daa4a1d330ad..28c84fad3e89 100644
--- a/drivers/staging/media/atomisp/pci/atomisp_ioctl.c
+++ b/drivers/staging/media/atomisp/pci/atomisp_ioctl.c
@@ -1830,11 +1830,10 @@ start_sensor:
dev_err(isp->dev, "master slave sensor stream on failed!\n");
goto out;
}
- if (!IS_ISP2401) {
+ if (!IS_ISP2401)
__wdt_on_master_slave_sensor(isp, wdt_duration);
- } else {
+ else
__wdt_on_master_slave_sensor_pipe(pipe, wdt_duration, true);
- }
goto start_delay_wq;
} else if (asd->depth_mode->val && (atomisp_streaming_count(isp) <
ATOMISP_DEPTH_SENSOR_STREAMON_COUNT)) {