aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/patch_via.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2013-06-05 15:25:18 +0200
committerTakashi Iwai <tiwai@suse.de>2013-06-05 15:25:18 +0200
commit2c38d990fbdfc76176b03d60bc5e1a93d270760d (patch)
tree7bf636bf2d5e02ed3c6107c4ce094c1d7b05da86 /sound/pci/hda/patch_via.c
parentMerge branch 'for-linus' into for-next (diff)
downloadlinux-dev-2c38d990fbdfc76176b03d60bc5e1a93d270760d.tar.xz
linux-dev-2c38d990fbdfc76176b03d60bc5e1a93d270760d.zip
ALSA: hda/via - Use standard snd_hda_shutup_pins()
Just a minor clean up. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to '')
-rw-r--r--sound/pci/hda/patch_via.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/sound/pci/hda/patch_via.c b/sound/pci/hda/patch_via.c
index e5245544eb52..cf31b664d2ed 100644
--- a/sound/pci/hda/patch_via.c
+++ b/sound/pci/hda/patch_via.c
@@ -480,14 +480,9 @@ static int via_suspend(struct hda_codec *codec)
struct via_spec *spec = codec->spec;
vt1708_stop_hp_work(codec);
- if (spec->codec_type == VT1802) {
- /* Fix pop noise on headphones */
- int i;
- for (i = 0; i < spec->gen.autocfg.hp_outs; i++)
- snd_hda_codec_write(codec, spec->gen.autocfg.hp_pins[i],
- 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
- 0x00);
- }
+ /* Fix pop noise on headphones */
+ if (spec->codec_type == VT1802)
+ snd_hda_shutup_pins(codec);
return 0;
}