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-sf16fmi.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-sf16fmi.c')
-rw-r--r-- | drivers/media/radio/radio-sf16fmi.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/drivers/media/radio/radio-sf16fmi.c b/drivers/media/radio/radio-sf16fmi.c index 0d478f54a907..55f8334513f3 100644 --- a/drivers/media/radio/radio-sf16fmi.c +++ b/drivers/media/radio/radio-sf16fmi.c | |||
@@ -45,6 +45,7 @@ static struct v4l2_queryctrl radio_qctrl[] = { | |||
45 | 45 | ||
46 | struct fmi_device | 46 | struct fmi_device |
47 | { | 47 | { |
48 | unsigned long in_use; | ||
48 | int port; | 49 | int port; |
49 | int curvol; /* 1 or 0 */ | 50 | int curvol; /* 1 or 0 */ |
50 | unsigned long curfreq; /* freq in kHz */ | 51 | unsigned long curfreq; /* freq in kHz */ |
@@ -284,10 +285,21 @@ static int vidioc_s_audio(struct file *file, void *priv, | |||
284 | 285 | ||
285 | static struct fmi_device fmi_unit; | 286 | static struct fmi_device fmi_unit; |
286 | 287 | ||
288 | static int fmi_exclusive_open(struct inode *inode, struct file *file) | ||
289 | { | ||
290 | return test_and_set_bit(0, &fmi_unit.in_use) ? -EBUSY : 0; | ||
291 | } | ||
292 | |||
293 | static int fmi_exclusive_release(struct inode *inode, struct file *file) | ||
294 | { | ||
295 | clear_bit(0, &fmi_unit.in_use); | ||
296 | return 0; | ||
297 | } | ||
298 | |||
287 | static const struct file_operations fmi_fops = { | 299 | static const struct file_operations fmi_fops = { |
288 | .owner = THIS_MODULE, | 300 | .owner = THIS_MODULE, |
289 | .open = video_exclusive_open, | 301 | .open = fmi_exclusive_open, |
290 | .release = video_exclusive_release, | 302 | .release = fmi_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, |