aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/media/video/zoran/zoran_device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/zoran/zoran_device.c b/drivers/media/video/zoran/zoran_device.c
index b02007e42150..e8a27844bf39 100644
--- a/drivers/media/video/zoran/zoran_device.c
+++ b/drivers/media/video/zoran/zoran_device.c
@@ -1523,7 +1523,7 @@ zoran_irq (int irq,
1523 zr->JPEG_missed > 25 || 1523 zr->JPEG_missed > 25 ||
1524 zr->JPEG_error == 1 || 1524 zr->JPEG_error == 1 ||
1525 ((zr->codec_mode == BUZ_MODE_MOTION_DECOMPRESS) && 1525 ((zr->codec_mode == BUZ_MODE_MOTION_DECOMPRESS) &&
1526 (zr->frame_num & (zr->JPEG_missed > zr->jpg_settings.field_per_buff)))) { 1526 (zr->frame_num && (zr->JPEG_missed > zr->jpg_settings.field_per_buff)))) {
1527 error_handler(zr, astat, stat); 1527 error_handler(zr, astat, stat);
1528 } 1528 }
1529 1529