diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-02-27 11:51:24 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-30 12:43:02 -0300 |
commit | 9b76ede411145d7456ae5e467b65003ca7990b06 (patch) | |
tree | e268c46a84fb40beded7302775427052a0bedf00 /include/sound | |
parent | 85f8841e8a17367a85a60b6d30eff7858d9d1598 (diff) | |
download | linux-3.10-9b76ede411145d7456ae5e467b65003ca7990b06.tar.gz linux-3.10-9b76ede411145d7456ae5e467b65003ca7990b06.tar.bz2 linux-3.10-9b76ede411145d7456ae5e467b65003ca7990b06.zip |
V4L/DVB (10771): tea575x-tuner: convert it to V4L2 API
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/tea575x-tuner.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/sound/tea575x-tuner.h b/include/sound/tea575x-tuner.h index 426899e529c..5718a02d3af 100644 --- a/include/sound/tea575x-tuner.h +++ b/include/sound/tea575x-tuner.h @@ -22,8 +22,9 @@ * */ -#include <linux/videodev.h> +#include <linux/videodev2.h> #include <media/v4l2-dev.h> +#include <media/v4l2-ioctl.h> struct snd_tea575x; @@ -35,11 +36,10 @@ struct snd_tea575x_ops { struct snd_tea575x { struct snd_card *card; - struct video_device vd; /* video device */ - struct v4l2_file_operations fops; + struct video_device *vd; /* video device */ int dev_nr; /* requested device number + 1 */ - int vd_registered; /* video device is registered */ int tea5759; /* 5759 chip is present */ + int mute; /* Device is muted? */ unsigned int freq_fixup; /* crystal onboard */ unsigned int val; /* hw value */ unsigned long freq; /* frequency */ |