mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 09:51:21 -04:00
[media] bfin_capture: drop unnecessary vb2_is_streaming check
The stop_streaming op is only called if streaming is in progress, so drop the unnecessary 'if (!vb2_is_streaming(vq))' check. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Acked-by: Pawel Osciak <pawel@osciak.com> Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
e37559b22c
commit
348a634de2
@@ -433,9 +433,6 @@ static void bcap_stop_streaming(struct vb2_queue *vq)
|
||||
struct ppi_if *ppi = bcap_dev->ppi;
|
||||
int ret;
|
||||
|
||||
if (!vb2_is_streaming(vq))
|
||||
return 0;
|
||||
|
||||
bcap_dev->stop = true;
|
||||
wait_for_completion(&bcap_dev->comp);
|
||||
ppi->ops->stop(ppi);
|
||||
|
||||
Reference in New Issue
Block a user