diff options
author | Takashi Iwai <tiwai@suse.de> | 2006-01-23 14:21:05 (GMT) |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-02-01 12:09:09 (GMT) |
commit | 91134859702e66e5946383f66e6eb50ba4325458 (patch) | |
tree | 6accdbc61f79ec5c2f19fea22b29c4f79d0d2473 /sound/isa/opti9xx/opti92x-ad1848.c | |
parent | fe25ad8a84c798a82591e5ed14519c001500fa61 (diff) | |
download | linux-fsl-qoriq-91134859702e66e5946383f66e6eb50ba4325458.tar.xz |
[ALSA] opti93x - Fix a compile warning
Modules: Opti9xx drivers
Fix a gcc-4.1 compile warning regarding uninitialized variables.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/isa/opti9xx/opti92x-ad1848.c')
-rw-r--r-- | sound/isa/opti9xx/opti92x-ad1848.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/isa/opti9xx/opti92x-ad1848.c b/sound/isa/opti9xx/opti92x-ad1848.c index 1ea3944..63d96be 100644 --- a/sound/isa/opti9xx/opti92x-ad1848.c +++ b/sound/isa/opti9xx/opti92x-ad1848.c @@ -1349,7 +1349,7 @@ static int snd_opti93x_pcm(struct snd_opti93x *codec, int device, struct snd_pcm int error; struct snd_pcm *pcm; - if ((error = snd_pcm_new(codec->card, "OPTi 82C93X", device, 1, 1, &pcm))) + if ((error = snd_pcm_new(codec->card, "OPTi 82C93X", device, 1, 1, &pcm)) < 0) return error; snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_opti93x_playback_ops); |