aboutsummaryrefslogtreecommitdiffstats
path: root/sound/isa/wavefront
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2006-01-23 09:20:38 -0500
committerJaroslav Kysela <perex@suse.cz>2006-02-01 07:09:07 -0500
commitfe25ad8a84c798a82591e5ed14519c001500fa61 (patch)
tree77d4ebe873ccb24f0325b6e8be10a30c9abc738c /sound/isa/wavefront
parent51c2bbfcdb10162b294f31e2b1c7106639caaec2 (diff)
[ALSA] wavefront - Fix a compile warning
Modules: Wavefront drivers Fix a gcc-4.1 compile warning regarding uninitialized variables. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/isa/wavefront')
-rw-r--r--sound/isa/wavefront/wavefront_synth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/isa/wavefront/wavefront_synth.c b/sound/isa/wavefront/wavefront_synth.c
index ed81eec6e732..68aa091e8961 100644
--- a/sound/isa/wavefront/wavefront_synth.c
+++ b/sound/isa/wavefront/wavefront_synth.c
@@ -866,7 +866,7 @@ wavefront_send_sample (snd_wavefront_t *dev,
866 divided by 2. 866 divided by 2.
867 */ 867 */
868 868
869 u16 sample_short; 869 u16 sample_short = 0;
870 u32 length; 870 u32 length;
871 u16 __user *data_end = NULL; 871 u16 __user *data_end = NULL;
872 unsigned int i; 872 unsigned int i;