diff options
author | Takashi Iwai <tiwai@suse.de> | 2006-10-10 19:49:31 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@server.perex.cz> | 2006-12-20 08:55:39 +0100 |
commit | bd2033f27f346610b11b40a74ff7d1d023abcfd9 (patch) | |
tree | bbc250a3b9c525565179a9105f2313114a9d32b6 /sound/pci/hda/patch_realtek.c | |
parent | d9301263cce69ee4ef989de5bbe57515ef71a780 (diff) | |
download | op-kernel-dev-bd2033f27f346610b11b40a74ff7d1d023abcfd9.zip op-kernel-dev-bd2033f27f346610b11b40a74ff7d1d023abcfd9.tar.gz |
[ALSA] hda-codec - Fix wrong error checks in patch_{realtek,analog}.c
Fix wrong error checks of *_ch_mode_put() in patch_realtek.c and
patch_analog.c. snd_hda_ch_mode_put() could return a positive
value for success, too.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/pci/hda/patch_realtek.c')
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index fb96144..5f55679 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -271,7 +271,7 @@ static int alc_ch_mode_put(struct snd_kcontrol *kcontrol, int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode, spec->num_channel_mode, &spec->multiout.max_channels); - if (! err && spec->need_dac_fix) + if (err >= 0 && spec->need_dac_fix) spec->multiout.num_dacs = spec->multiout.max_channels / 2; return err; } |