diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-13 17:03:59 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-13 17:03:59 -0400 |
commit | cf2fa66055d718ae13e62451bb546505f63906a2 (patch) | |
tree | e206d3f04e74a34e9aa88d21af6c26eea21d4121 /drivers/media/radio/radio-trust.c | |
parent | 4501a466f28788485604ee42641d7a5fe7258d16 (diff) | |
parent | 57f51dbc45f65f7ee1e8c8f77200bb8000e3e271 (diff) |
Merge branch 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6
* 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6: (313 commits)
V4L/DVB (9186): Added support for Prof 7300 DVB-S/S2 cards
V4L/DVB (9185): S2API: Ensure we have a reasonable ROLLOFF default
V4L/DVB (9184): cx24116: Change the default SNR units back to percentage by default.
V4L/DVB (9183): S2API: Return error of the caller provides 0 commands.
V4L/DVB (9182): S2API: Added support for DTV_HIERARCHY
V4L/DVB (9181): S2API: Add support fot DTV_GUARD_INTERVAL and DTV_TRANSMISSION_MODE
V4L/DVB (9180): S2API: Added support for DTV_CODE_RATE_HP/LP
V4L/DVB (9179): S2API: frontend.h cleanup
V4L/DVB (9178): cx24116: Add module parameter to return SNR as ESNO.
V4L/DVB (9177): S2API: Change _8PSK / _16APSK to PSK_8 and APSK_16
V4L/DVB (9176): Add support for DvbWorld USB cards with STV0288 demodulator.
V4L/DVB (9175): Remove NULL pointer in stb6000 driver.
V4L/DVB (9174): Allow custom inittab for ST STV0288 demodulator.
V4L/DVB (9173): S2API: Remove the hardcoded command limit during validation
V4L/DVB (9172): S2API: Bugfix related to DVB-S / DVB-S2 tuning for the legacy API.
V4L/DVB (9171): S2API: Stop an OOPS if illegal commands are dumped in S2API.
V4L/DVB (9170): cx24116: Sanity checking to data input via S2API to the cx24116 demod.
V4L/DVB (9169): uvcvideo: Support two new Bison Electronics webcams.
V4L/DVB (9168): Add support for MSI TV@nywhere Plus remote
V4L/DVB: v4l2-dev: remove duplicated #include
...
Diffstat (limited to 'drivers/media/radio/radio-trust.c')
-rw-r--r-- | drivers/media/radio/radio-trust.c | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/drivers/media/radio/radio-trust.c b/drivers/media/radio/radio-trust.c index 193161956253..e7b111fcd105 100644 --- a/drivers/media/radio/radio-trust.c +++ b/drivers/media/radio/radio-trust.c | |||
@@ -78,6 +78,7 @@ static __u16 curtreble; | |||
78 | static unsigned long curfreq; | 78 | static unsigned long curfreq; |
79 | static int curstereo; | 79 | static int curstereo; |
80 | static int curmute; | 80 | static int curmute; |
81 | static unsigned long in_use; | ||
81 | 82 | ||
82 | /* i2c addresses */ | 83 | /* i2c addresses */ |
83 | #define TDA7318_ADDR 0x88 | 84 | #define TDA7318_ADDR 0x88 |
@@ -336,10 +337,21 @@ static int vidioc_s_audio(struct file *file, void *priv, | |||
336 | return 0; | 337 | return 0; |
337 | } | 338 | } |
338 | 339 | ||
340 | static int trust_exclusive_open(struct inode *inode, struct file *file) | ||
341 | { | ||
342 | return test_and_set_bit(0, &in_use) ? -EBUSY : 0; | ||
343 | } | ||
344 | |||
345 | static int trust_exclusive_release(struct inode *inode, struct file *file) | ||
346 | { | ||
347 | clear_bit(0, &in_use); | ||
348 | return 0; | ||
349 | } | ||
350 | |||
339 | static const struct file_operations trust_fops = { | 351 | static const struct file_operations trust_fops = { |
340 | .owner = THIS_MODULE, | 352 | .owner = THIS_MODULE, |
341 | .open = video_exclusive_open, | 353 | .open = trust_exclusive_open, |
342 | .release = video_exclusive_release, | 354 | .release = trust_exclusive_release, |
343 | .ioctl = video_ioctl2, | 355 | .ioctl = video_ioctl2, |
344 | #ifdef CONFIG_COMPAT | 356 | #ifdef CONFIG_COMPAT |
345 | .compat_ioctl = v4l_compat_ioctl32, | 357 | .compat_ioctl = v4l_compat_ioctl32, |
@@ -366,6 +378,7 @@ static struct video_device trust_radio = { | |||
366 | .name = "Trust FM Radio", | 378 | .name = "Trust FM Radio", |
367 | .fops = &trust_fops, | 379 | .fops = &trust_fops, |
368 | .ioctl_ops = &trust_ioctl_ops, | 380 | .ioctl_ops = &trust_ioctl_ops, |
381 | .release = video_device_release_empty, | ||
369 | }; | 382 | }; |
370 | 383 | ||
371 | static int __init trust_init(void) | 384 | static int __init trust_init(void) |