summaryrefslogtreecommitdiffstats
path: root/drivers/media/platform/coda
diff options
context:
space:
mode:
authorMichael Tretter2017-03-03 13:12:47 +0100
committerMauro Carvalho Chehab2017-03-22 14:06:24 +0100
commit888708b1decb7d12e09095cd67e5b6442401cd51 (patch)
treea8deffe394ab04adcbbcde42a26100d97a931e6c /drivers/media/platform/coda
parent[media] coda: disable BWB for all codecs on CODA 960 (diff)
downloadkernel-qcow2-linux-888708b1decb7d12e09095cd67e5b6442401cd51.tar.gz
kernel-qcow2-linux-888708b1decb7d12e09095cd67e5b6442401cd51.tar.xz
kernel-qcow2-linux-888708b1decb7d12e09095cd67e5b6442401cd51.zip
[media] coda: Use && instead of & for non-bitfield conditions
streamon and streamoff are used as boolean values, not as bitfields. Therefore, the logical && should be used to combine them. Signed-off-by: Michael Tretter <m.tretter@pengutronix.de> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/platform/coda')
-rw-r--r--drivers/media/platform/coda/coda-common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/coda/coda-common.c b/drivers/media/platform/coda/coda-common.c
index 85a8add36214..ee9d4b81d675 100644
--- a/drivers/media/platform/coda/coda-common.c
+++ b/drivers/media/platform/coda/coda-common.c
@@ -1459,7 +1459,7 @@ static int coda_start_streaming(struct vb2_queue *q, unsigned int count)
}
/* Don't start the coda unless both queues are on */
- if (!(ctx->streamon_out & ctx->streamon_cap))
+ if (!(ctx->streamon_out && ctx->streamon_cap))
return 0;
q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);