diff options
author | Mauro Carvalho Chehab <devnull@localhost> | 2005-06-10 10:57:18 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <devnull@localhost> | 2005-06-10 10:57:18 +0000 |
commit | 7b4d77f88caf46e29fabd3390e6aa06904ce4181 (patch) | |
tree | 8f17a34b946ee2e0a0075aeb1f96276139cfe206 /linux/drivers/media/video/cx88/cx88-video.c | |
parent | a3fba27b25767905b9608ef9adf68ada1c04776e (diff) | |
download | mediapointer-dvb-s2-7b4d77f88caf46e29fabd3390e6aa06904ce4181.tar.gz mediapointer-dvb-s2-7b4d77f88caf46e29fabd3390e6aa06904ce4181.tar.bz2 |
Mostly corrected a bug when changing from audio <-> Tv mode and having separated tuners.
* tuner-core.c:
- Improved debug for radio/TV tuner calls.
- Corrected set radio/TV mode calls to change status go to both tuners.
- Improved V4L2_TUNER_CAP_LOW support (tv_range hack)
* tea5767.c:
- Included a new debug message.
* cx88-video.c:
- Enabled V4L2_TUNER_CAP_LOW to radio.
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88-video.c')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-video.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-video.c b/linux/drivers/media/video/cx88/cx88-video.c index 1ca1f94c0..e1e1d469b 100644 --- a/linux/drivers/media/video/cx88/cx88-video.c +++ b/linux/drivers/media/video/cx88/cx88-video.c @@ -1,5 +1,5 @@ /* - * $Id: cx88-video.c,v 1.61 2005/06/09 11:44:24 mchehab Exp $ + * $Id: cx88-video.c,v 1.62 2005/06/10 10:57:18 mchehab Exp $ * * device driver for Conexant 2388x based TV cards * video4linux video interface @@ -1719,7 +1719,8 @@ static int radio_do_ioctl(struct inode *inode, struct file *file, sizeof(cap->card)); sprintf(cap->bus_info,"PCI:%s", pci_name(dev->pci)); cap->version = CX88_VERSION_CODE; - cap->capabilities = V4L2_CAP_TUNER; + cap->capabilities = V4L2_CAP_TUNER | + V4L2_TUNER_CAP_LOW; return 0; } case VIDIOC_G_TUNER: |