|
@@ -742,6 +742,7 @@ static void vsp1_video_stop_streaming(struct vb2_queue *vq)
|
|
|
{
|
|
|
struct vsp1_video *video = vb2_get_drv_priv(vq);
|
|
|
struct vsp1_pipeline *pipe = to_vsp1_pipeline(&video->video.entity);
|
|
|
+ struct vsp1_video_buffer *buffer;
|
|
|
unsigned long flags;
|
|
|
int ret;
|
|
|
|
|
@@ -759,6 +760,8 @@ static void vsp1_video_stop_streaming(struct vb2_queue *vq)
|
|
|
|
|
|
/* Remove all buffers from the IRQ queue. */
|
|
|
spin_lock_irqsave(&video->irqlock, flags);
|
|
|
+ list_for_each_entry(buffer, &video->irqqueue, queue)
|
|
|
+ vb2_buffer_done(&buffer->buf, VB2_BUF_STATE_ERROR);
|
|
|
INIT_LIST_HEAD(&video->irqqueue);
|
|
|
spin_unlock_irqrestore(&video->irqlock, flags);
|
|
|
}
|