diff options
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/video/v4l2-ctrls.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/video/v4l2-ctrls.c b/drivers/media/video/v4l2-ctrls.c index a037739868e0..37a50e57f222 100644 --- a/drivers/media/video/v4l2-ctrls.c +++ b/drivers/media/video/v4l2-ctrls.c | |||
@@ -590,7 +590,8 @@ static void send_event(struct v4l2_fh *fh, struct v4l2_ctrl *ctrl, u32 changes) | |||
590 | fill_event(&ev, ctrl, changes); | 590 | fill_event(&ev, ctrl, changes); |
591 | 591 | ||
592 | list_for_each_entry(sev, &ctrl->ev_subs, node) | 592 | list_for_each_entry(sev, &ctrl->ev_subs, node) |
593 | if (sev->fh && sev->fh != fh) | 593 | if (sev->fh && (sev->fh != fh || |
594 | (sev->flags & V4L2_EVENT_SUB_FL_ALLOW_FEEDBACK))) | ||
594 | v4l2_event_queue_fh(sev->fh, &ev); | 595 | v4l2_event_queue_fh(sev->fh, &ev); |
595 | } | 596 | } |
596 | 597 | ||