Commit 81cad440 authored by Ming Qian's avatar Ming Qian Committed by Mauro Carvalho Chehab

media: amphion: wake up when error occurs

when error occurs, driver set error flag,
and driver need to wake up the poll wait
Signed-off-by: default avatarMing Qian <ming.qian@nxp.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent 4aafe026
...@@ -73,10 +73,10 @@ void vpu_v4l2_set_error(struct vpu_inst *inst) ...@@ -73,10 +73,10 @@ void vpu_v4l2_set_error(struct vpu_inst *inst)
if (inst->fh.m2m_ctx) { if (inst->fh.m2m_ctx) {
src_q = v4l2_m2m_get_src_vq(inst->fh.m2m_ctx); src_q = v4l2_m2m_get_src_vq(inst->fh.m2m_ctx);
dst_q = v4l2_m2m_get_dst_vq(inst->fh.m2m_ctx); dst_q = v4l2_m2m_get_dst_vq(inst->fh.m2m_ctx);
if (src_q) src_q->error = 1;
src_q->error = 1; dst_q->error = 1;
if (dst_q) wake_up(&src_q->done_wq);
dst_q->error = 1; wake_up(&dst_q->done_wq);
} }
vpu_inst_unlock(inst); vpu_inst_unlock(inst);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment