diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-12-30 20:41:32 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-12-30 20:41:32 -0500 |
commit | f54a6ec0fd85002d94d05b4bb679508eeb066683 (patch) | |
tree | 0f24dd66cce563d2c5e7656c2489e5b96eef31f9 /sound | |
parent | 5ed1836814d908f45cafde0e79cb85314ab9d41d (diff) | |
parent | 134179823b3ca9c8b98e0631906459dbb022ff9b (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: (583 commits)
V4L/DVB (10130): use USB API functions rather than constants
V4L/DVB (10129): dvb: remove deprecated use of RW_LOCK_UNLOCKED in frontends
V4L/DVB (10128): modify V4L documentation to be a valid XHTML
V4L/DVB (10127): stv06xx: Avoid having y unitialized
V4L/DVB (10125): em28xx: Don't do AC97 vendor detection for i2s audio devices
V4L/DVB (10124): em28xx: expand output formats available
V4L/DVB (10123): em28xx: fix reversed definitions of I2S audio modes
V4L/DVB (10122): em28xx: don't load em28xx-alsa for em2870 based devices
V4L/DVB (10121): em28xx: remove worthless Pinnacle PCTV HD Mini 80e device profile
V4L/DVB (10120): em28xx: remove redundant Pinnacle Dazzle DVC 100 profile
V4L/DVB (10119): em28xx: fix corrupted XCLK value
V4L/DVB (10118): zoran: fix warning for a variable not used
V4L/DVB (10116): af9013: Fix gcc false warnings
V4L/DVB (10111a): usbvideo.h: remove an useless blank line
V4L/DVB (10111): quickcam_messenger.c: fix a warning
V4L/DVB (10110): v4l2-ioctl: Fix warnings when using .unlocked_ioctl = __video_ioctl2
V4L/DVB (10109): anysee: Fix usage of an unitialized function
V4L/DVB (10104): uvcvideo: Add support for video output devices
V4L/DVB (10102): uvcvideo: Ignore interrupt endpoint for built-in iSight webcams.
V4L/DVB (10101): uvcvideo: Fix bulk URB processing when the header is erroneous
...
Diffstat (limited to 'sound')
-rw-r--r-- | sound/i2c/other/tea575x-tuner.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sound/i2c/other/tea575x-tuner.c b/sound/i2c/other/tea575x-tuner.c index c13a178383ba..549b4eba1496 100644 --- a/sound/i2c/other/tea575x-tuner.c +++ b/sound/i2c/other/tea575x-tuner.c | |||
@@ -18,7 +18,7 @@ | |||
18 | * along with this program; if not, write to the Free Software | 18 | * along with this program; if not, write to the Free Software |
19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
20 | * | 20 | * |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #include <asm/io.h> | 23 | #include <asm/io.h> |
24 | #include <linux/delay.h> | 24 | #include <linux/delay.h> |
@@ -89,7 +89,7 @@ static int snd_tea575x_ioctl(struct inode *inode, struct file *file, | |||
89 | { | 89 | { |
90 | struct snd_tea575x *tea = video_drvdata(file); | 90 | struct snd_tea575x *tea = video_drvdata(file); |
91 | void __user *arg = (void __user *)data; | 91 | void __user *arg = (void __user *)data; |
92 | 92 | ||
93 | switch(cmd) { | 93 | switch(cmd) { |
94 | case VIDIOCGCAP: | 94 | case VIDIOCGCAP: |
95 | { | 95 | { |
@@ -110,9 +110,9 @@ static int snd_tea575x_ioctl(struct inode *inode, struct file *file, | |||
110 | case VIDIOCGTUNER: | 110 | case VIDIOCGTUNER: |
111 | { | 111 | { |
112 | struct video_tuner v; | 112 | struct video_tuner v; |
113 | if (copy_from_user(&v, arg,sizeof(v))!=0) | 113 | if (copy_from_user(&v, arg,sizeof(v))!=0) |
114 | return -EFAULT; | 114 | return -EFAULT; |
115 | if (v.tuner) /* Only 1 tuner */ | 115 | if (v.tuner) /* Only 1 tuner */ |
116 | return -EINVAL; | 116 | return -EINVAL; |
117 | v.rangelow = (87*16000); | 117 | v.rangelow = (87*16000); |
118 | v.rangehigh = (108*16000); | 118 | v.rangehigh = (108*16000); |
@@ -144,24 +144,24 @@ static int snd_tea575x_ioctl(struct inode *inode, struct file *file, | |||
144 | snd_tea575x_set_freq(tea); | 144 | snd_tea575x_set_freq(tea); |
145 | return 0; | 145 | return 0; |
146 | case VIDIOCGAUDIO: | 146 | case VIDIOCGAUDIO: |
147 | { | 147 | { |
148 | struct video_audio v; | 148 | struct video_audio v; |
149 | memset(&v, 0, sizeof(v)); | 149 | memset(&v, 0, sizeof(v)); |
150 | strcpy(v.name, "Radio"); | 150 | strcpy(v.name, "Radio"); |
151 | if(copy_to_user(arg,&v, sizeof(v))) | 151 | if(copy_to_user(arg,&v, sizeof(v))) |
152 | return -EFAULT; | 152 | return -EFAULT; |
153 | return 0; | 153 | return 0; |
154 | } | 154 | } |
155 | case VIDIOCSAUDIO: | 155 | case VIDIOCSAUDIO: |
156 | { | 156 | { |
157 | struct video_audio v; | 157 | struct video_audio v; |
158 | if(copy_from_user(&v, arg, sizeof(v))) | 158 | if(copy_from_user(&v, arg, sizeof(v))) |
159 | return -EFAULT; | 159 | return -EFAULT; |
160 | if (tea->ops->mute) | 160 | if (tea->ops->mute) |
161 | tea->ops->mute(tea, | 161 | tea->ops->mute(tea, |
162 | (v.flags & | 162 | (v.flags & |
163 | VIDEO_AUDIO_MUTE) ? 1 : 0); | 163 | VIDEO_AUDIO_MUTE) ? 1 : 0); |
164 | if(v.audio) | 164 | if(v.audio) |
165 | return -EINVAL; | 165 | return -EINVAL; |
166 | return 0; | 166 | return 0; |
167 | } | 167 | } |
@@ -240,11 +240,11 @@ static int __init alsa_tea575x_module_init(void) | |||
240 | { | 240 | { |
241 | return 0; | 241 | return 0; |
242 | } | 242 | } |
243 | 243 | ||
244 | static void __exit alsa_tea575x_module_exit(void) | 244 | static void __exit alsa_tea575x_module_exit(void) |
245 | { | 245 | { |
246 | } | 246 | } |
247 | 247 | ||
248 | module_init(alsa_tea575x_module_init) | 248 | module_init(alsa_tea575x_module_init) |
249 | module_exit(alsa_tea575x_module_exit) | 249 | module_exit(alsa_tea575x_module_exit) |
250 | 250 | ||