aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/staging
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab+huawei@kernel.org>2020-05-12 20:32:51 +0200
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>2020-05-20 14:51:29 +0200
commit3117ddda1ecef96e646b120681a606b41247df52 (patch)
treed28ea07fe03ad6c426d122e4e4598eb50d79e518 /drivers/staging
parentmedia: atomisp: remove a misplaced #endif (diff)
downloadwireguard-linux-3117ddda1ecef96e646b120681a606b41247df52.tar.xz
wireguard-linux-3117ddda1ecef96e646b120681a606b41247df52.zip
media: atomisp: fix an inverted logic
When changing the IFs to select isp2401 at runtime, one of the conditions ended by being written wrong. Code double-checked on both Yocto Aero's driver version and against the previous code. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/media/atomisp/pci/atomisp_compat_css20.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/media/atomisp/pci/atomisp_compat_css20.c b/drivers/staging/media/atomisp/pci/atomisp_compat_css20.c
index 7afd12cba576..abc0fd91781a 100644
--- a/drivers/staging/media/atomisp/pci/atomisp_compat_css20.c
+++ b/drivers/staging/media/atomisp/pci/atomisp_compat_css20.c
@@ -4585,10 +4585,10 @@ int atomisp_css_isr_thread(struct atomisp_device *isp,
}
}
- if (!atomisp_hw_is_isp2401)
+ if (atomisp_hw_is_isp2401)
return 0;
- /* ISP2401: If there are no buffers queued then delete wdt timer. */
+ /* ISP2400: If there are no buffers queued then delete wdt timer. */
for (i = 0; i < isp->num_of_streams; i++) {
asd = &isp->asd[i];
if (!asd)