aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/v4l2-fh.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/v4l2-fh.c')
-rw-r--r--drivers/media/video/v4l2-fh.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/media/video/v4l2-fh.c b/drivers/media/video/v4l2-fh.c
index d78f184f40c5..78a1608a09d6 100644
--- a/drivers/media/video/v4l2-fh.c
+++ b/drivers/media/video/v4l2-fh.c
@@ -33,6 +33,8 @@ int v4l2_fh_init(struct v4l2_fh *fh, struct video_device *vdev)
33 fh->vdev = vdev; 33 fh->vdev = vdev;
34 INIT_LIST_HEAD(&fh->list); 34 INIT_LIST_HEAD(&fh->list);
35 set_bit(V4L2_FL_USES_V4L2_FH, &fh->vdev->flags); 35 set_bit(V4L2_FL_USES_V4L2_FH, &fh->vdev->flags);
36 fh->prio = V4L2_PRIORITY_UNSET;
37 BUG_ON(vdev->prio == NULL);
36 38
37 /* 39 /*
38 * fh->events only needs to be initialized if the driver 40 * fh->events only needs to be initialized if the driver
@@ -51,6 +53,7 @@ void v4l2_fh_add(struct v4l2_fh *fh)
51{ 53{
52 unsigned long flags; 54 unsigned long flags;
53 55
56 v4l2_prio_open(fh->vdev->prio, &fh->prio);
54 spin_lock_irqsave(&fh->vdev->fh_lock, flags); 57 spin_lock_irqsave(&fh->vdev->fh_lock, flags);
55 list_add(&fh->list, &fh->vdev->fh_list); 58 list_add(&fh->list, &fh->vdev->fh_list);
56 spin_unlock_irqrestore(&fh->vdev->fh_lock, flags); 59 spin_unlock_irqrestore(&fh->vdev->fh_lock, flags);
@@ -64,6 +67,7 @@ void v4l2_fh_del(struct v4l2_fh *fh)
64 spin_lock_irqsave(&fh->vdev->fh_lock, flags); 67 spin_lock_irqsave(&fh->vdev->fh_lock, flags);
65 list_del_init(&fh->list); 68 list_del_init(&fh->list);
66 spin_unlock_irqrestore(&fh->vdev->fh_lock, flags); 69 spin_unlock_irqrestore(&fh->vdev->fh_lock, flags);
70 v4l2_prio_close(fh->vdev->prio, fh->prio);
67} 71}
68EXPORT_SYMBOL_GPL(v4l2_fh_del); 72EXPORT_SYMBOL_GPL(v4l2_fh_del);
69 73