aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/radio/radio-terratec.c
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2008-08-23 03:49:13 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-10-12 07:36:53 -0400
commit3ca685aae04960eaa8b2c97baf384996c20cf9ac (patch)
treea4d99449643380c62b11a05d93f81b6b8a2f82d7 /drivers/media/radio/radio-terratec.c
parent3b5df8ea40ac533c62b8e5f9f173d985665fc752 (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-terratec.c')
-rw-r--r--drivers/media/radio/radio-terratec.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/drivers/media/radio/radio-terratec.c b/drivers/media/radio/radio-terratec.c
index 0876fecc5f27..eed14972a940 100644
--- a/drivers/media/radio/radio-terratec.c
+++ b/drivers/media/radio/radio-terratec.c
@@ -79,6 +79,7 @@ static spinlock_t lock;
79 79
80struct tt_device 80struct tt_device
81{ 81{
82 unsigned long in_use;
82 int port; 83 int port;
83 int curvol; 84 int curvol;
84 unsigned long curfreq; 85 unsigned long curfreq;
@@ -356,10 +357,21 @@ static int vidioc_s_audio(struct file *file, void *priv,
356 357
357static struct tt_device terratec_unit; 358static struct tt_device terratec_unit;
358 359
360static int terratec_exclusive_open(struct inode *inode, struct file *file)
361{
362 return test_and_set_bit(0, &terratec_unit.in_use) ? -EBUSY : 0;
363}
364
365static int terratec_exclusive_release(struct inode *inode, struct file *file)
366{
367 clear_bit(0, &terratec_unit.in_use);
368 return 0;
369}
370
359static const struct file_operations terratec_fops = { 371static const struct file_operations terratec_fops = {
360 .owner = THIS_MODULE, 372 .owner = THIS_MODULE,
361 .open = video_exclusive_open, 373 .open = terratec_exclusive_open,
362 .release = video_exclusive_release, 374 .release = terratec_exclusive_release,
363 .ioctl = video_ioctl2, 375 .ioctl = video_ioctl2,
364#ifdef CONFIG_COMPAT 376#ifdef CONFIG_COMPAT
365 .compat_ioctl = v4l_compat_ioctl32, 377 .compat_ioctl = v4l_compat_ioctl32,