diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-08-23 03:49:13 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-12 07:36:53 -0400 |
commit | 3ca685aae04960eaa8b2c97baf384996c20cf9ac (patch) | |
tree | a4d99449643380c62b11a05d93f81b6b8a2f82d7 /drivers/media/radio/radio-rtrack2.c | |
parent | 3b5df8ea40ac533c62b8e5f9f173d985665fc752 (diff) |
V4L/DVB (8776): radio: replace video_exclusive_open/release
Move the video_exclusive_open/release functionality into the driver itself.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/radio/radio-rtrack2.c')
-rw-r--r-- | drivers/media/radio/radio-rtrack2.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/drivers/media/radio/radio-rtrack2.c b/drivers/media/radio/radio-rtrack2.c index 6d820e2481e7..5b93b47be714 100644 --- a/drivers/media/radio/radio-rtrack2.c +++ b/drivers/media/radio/radio-rtrack2.c | |||
@@ -52,6 +52,7 @@ static spinlock_t lock; | |||
52 | 52 | ||
53 | struct rt_device | 53 | struct rt_device |
54 | { | 54 | { |
55 | unsigned long in_use; | ||
55 | int port; | 56 | int port; |
56 | unsigned long curfreq; | 57 | unsigned long curfreq; |
57 | int muted; | 58 | int muted; |
@@ -284,10 +285,21 @@ static int vidioc_s_audio(struct file *file, void *priv, | |||
284 | 285 | ||
285 | static struct rt_device rtrack2_unit; | 286 | static struct rt_device rtrack2_unit; |
286 | 287 | ||
288 | static int rtrack2_exclusive_open(struct inode *inode, struct file *file) | ||
289 | { | ||
290 | return test_and_set_bit(0, &rtrack2_unit.in_use) ? -EBUSY : 0; | ||
291 | } | ||
292 | |||
293 | static int rtrack2_exclusive_release(struct inode *inode, struct file *file) | ||
294 | { | ||
295 | clear_bit(0, &rtrack2_unit.in_use); | ||
296 | return 0; | ||
297 | } | ||
298 | |||
287 | static const struct file_operations rtrack2_fops = { | 299 | static const struct file_operations rtrack2_fops = { |
288 | .owner = THIS_MODULE, | 300 | .owner = THIS_MODULE, |
289 | .open = video_exclusive_open, | 301 | .open = rtrack2_exclusive_open, |
290 | .release = video_exclusive_release, | 302 | .release = rtrack2_exclusive_release, |
291 | .ioctl = video_ioctl2, | 303 | .ioctl = video_ioctl2, |
292 | #ifdef CONFIG_COMPAT | 304 | #ifdef CONFIG_COMPAT |
293 | .compat_ioctl = v4l_compat_ioctl32, | 305 | .compat_ioctl = v4l_compat_ioctl32, |