diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-08-23 10:31:47 +0200 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2008-08-23 10:31:47 +0200 |
commit | ebc50a51f87d69d522b94d64ec8d7da4df5bbb93 (patch) | |
tree | da962ff624057233e60d7c090a7b18cb8aa9461d /linux/drivers/media/video/pms.c | |
parent | b5f5df65c8c54f89b3064a41b369a44f1883af0e (diff) | |
download | mediapointer-dvb-s2-ebc50a51f87d69d522b94d64ec8d7da4df5bbb93.tar.gz mediapointer-dvb-s2-ebc50a51f87d69d522b94d64ec8d7da4df5bbb93.tar.bz2 |
v4l: replace the last uses of video_exclusive_open/release
From: Hans Verkuil <hverkuil@xs4all.nl>
Handle the video_exclusive_open/release functionality inside the
driver.
Priority: normal
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux/drivers/media/video/pms.c')
-rw-r--r-- | linux/drivers/media/video/pms.c | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/linux/drivers/media/video/pms.c b/linux/drivers/media/video/pms.c index 8c51ee442..10db6d94d 100644 --- a/linux/drivers/media/video/pms.c +++ b/linux/drivers/media/video/pms.c @@ -48,6 +48,7 @@ struct pms_device struct video_picture picture; int height; int width; + unsigned long in_use; struct mutex lock; }; @@ -882,10 +883,27 @@ static ssize_t pms_read(struct file *file, char __user *buf, return len; } +static int pms_exclusive_open(struct inode *inode, struct file *file) +{ + struct video_device *v = video_devdata(file); + struct pms_device *pd = (struct pms_device *)v; + + return test_and_set_bit(0, &pd->in_use) ? -EBUSY : 0; +} + +static int pms_exclusive_release(struct inode *inode, struct file *file) +{ + struct video_device *v = video_devdata(file); + struct pms_device *pd = (struct pms_device *)v; + + clear_bit(0, &pd->in_use); + return 0; +} + static const struct file_operations pms_fops = { .owner = THIS_MODULE, - .open = video_exclusive_open, - .release = video_exclusive_release, + .open = pms_exclusive_open, + .release = pms_exclusive_release, .ioctl = pms_ioctl, #ifdef CONFIG_COMPAT .compat_ioctl = v4l_compat_ioctl32, |