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-typhoon.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-typhoon.c')
-rw-r--r-- | drivers/media/radio/radio-typhoon.c | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/drivers/media/radio/radio-typhoon.c b/drivers/media/radio/radio-typhoon.c index f8d62cfea774..878468507237 100644 --- a/drivers/media/radio/radio-typhoon.c +++ b/drivers/media/radio/radio-typhoon.c | |||
@@ -79,7 +79,7 @@ static struct v4l2_queryctrl radio_qctrl[] = { | |||
79 | #endif | 79 | #endif |
80 | 80 | ||
81 | struct typhoon_device { | 81 | struct typhoon_device { |
82 | int users; | 82 | unsigned long in_use; |
83 | int iobase; | 83 | int iobase; |
84 | int curvol; | 84 | int curvol; |
85 | int muted; | 85 | int muted; |
@@ -334,10 +334,21 @@ static struct typhoon_device typhoon_unit = | |||
334 | .mutefreq = CONFIG_RADIO_TYPHOON_MUTEFREQ, | 334 | .mutefreq = CONFIG_RADIO_TYPHOON_MUTEFREQ, |
335 | }; | 335 | }; |
336 | 336 | ||
337 | static int typhoon_exclusive_open(struct inode *inode, struct file *file) | ||
338 | { | ||
339 | return test_and_set_bit(0, &typhoon_unit.in_use) ? -EBUSY : 0; | ||
340 | } | ||
341 | |||
342 | static int typhoon_exclusive_release(struct inode *inode, struct file *file) | ||
343 | { | ||
344 | clear_bit(0, &typhoon_unit.in_use); | ||
345 | return 0; | ||
346 | } | ||
347 | |||
337 | static const struct file_operations typhoon_fops = { | 348 | static const struct file_operations typhoon_fops = { |
338 | .owner = THIS_MODULE, | 349 | .owner = THIS_MODULE, |
339 | .open = video_exclusive_open, | 350 | .open = typhoon_exclusive_open, |
340 | .release = video_exclusive_release, | 351 | .release = typhoon_exclusive_release, |
341 | .ioctl = video_ioctl2, | 352 | .ioctl = video_ioctl2, |
342 | #ifdef CONFIG_COMPAT | 353 | #ifdef CONFIG_COMPAT |
343 | .compat_ioctl = v4l_compat_ioctl32, | 354 | .compat_ioctl = v4l_compat_ioctl32, |
@@ -447,8 +458,7 @@ static int __init typhoon_init(void) | |||
447 | } | 458 | } |
448 | 459 | ||
449 | typhoon_radio.priv = &typhoon_unit; | 460 | typhoon_radio.priv = &typhoon_unit; |
450 | if (video_register_device(&typhoon_radio, VFL_TYPE_RADIO, radio_nr) == -1) | 461 | if (video_register_device(&typhoon_radio, VFL_TYPE_RADIO, radio_nr) < 0) { |
451 | { | ||
452 | release_region(io, 8); | 462 | release_region(io, 8); |
453 | return -EINVAL; | 463 | return -EINVAL; |
454 | } | 464 | } |