diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-07-26 11:07:06 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-07-26 11:07:06 +0200 |
commit | de5d674c0220e3adc84fb05d0e8e2793ffc094d8 (patch) | |
tree | cb59182d34b0092dc0c243036cb5b7477fe71e5f /sound/pci/hda/patch_analog.c | |
parent | f35e2965b238bbfd6d3be8969361b5769ed247ed (diff) | |
parent | 8de56b7deb2534a586839eda52843c1dae680dc5 (diff) |
Merge branch 'fix/hda' into for-linus
* fix/hda:
ALSA: hda - Fix mute control with some ALC262 models
ALSA: hda - Restore GPIO1 properly at resume with AD1984A
ALSA: hda - Use snprintf() to be safer
Diffstat (limited to 'sound/pci/hda/patch_analog.c')
-rw-r--r-- | sound/pci/hda/patch_analog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_analog.c b/sound/pci/hda/patch_analog.c index be7d25fa7f35..3da85caf8af1 100644 --- a/sound/pci/hda/patch_analog.c +++ b/sound/pci/hda/patch_analog.c @@ -3754,7 +3754,7 @@ static int ad1884a_mobile_master_sw_put(struct snd_kcontrol *kcontrol, int mute = (!ucontrol->value.integer.value[0] && !ucontrol->value.integer.value[1]); /* toggle GPIO1 according to the mute state */ - snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, + snd_hda_codec_write_cache(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, mute ? 0x02 : 0x0); return ret; } |