diff options
author | Takashi Iwai <tiwai@suse.de> | 2008-11-18 10:45:15 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-11-18 10:45:15 +0100 |
commit | 41c3b648bd4cdc34fd1918e288f8afe78903432e (patch) | |
tree | ec21a48a9657560e16410f4c875d73eb4746c48a /sound/pci | |
parent | 8e5f262bfcd90c041160a491a238661ebbb584a4 (diff) | |
download | linux-3.10-41c3b648bd4cdc34fd1918e288f8afe78903432e.tar.gz linux-3.10-41c3b648bd4cdc34fd1918e288f8afe78903432e.tar.bz2 linux-3.10-41c3b648bd4cdc34fd1918e288f8afe78903432e.zip |
ALSA: hda - Fix GPIO initialization in patch_stac92hd71bxx()
Fixed the GPIO mask and co initialization in patch_stac92hd71bxx()
so that the gpio_maks for HP_M4 model is set properly.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/hda/patch_sigmatel.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c index 0df6f979f2a..b254e90b47c 100644 --- a/sound/pci/hda/patch_sigmatel.c +++ b/sound/pci/hda/patch_sigmatel.c @@ -4478,6 +4478,13 @@ again: stac92xx_set_config_regs(codec); } + if (spec->board_config > STAC_92HD71BXX_REF) { + /* GPIO0 = EAPD */ + spec->gpio_mask = 0x01; + spec->gpio_dir = 0x01; + spec->gpio_data = 0x01; + } + switch (codec->vendor_id) { case 0x111d76b6: /* 4 Port without Analog Mixer */ case 0x111d76b7: @@ -4537,13 +4544,6 @@ again: spec->aloopback_mask = 0x50; spec->aloopback_shift = 0; - if (spec->board_config > STAC_92HD71BXX_REF) { - /* GPIO0 = EAPD */ - spec->gpio_mask = 0x01; - spec->gpio_dir = 0x01; - spec->gpio_data = 0x01; - } - spec->powerdown_adcs = 1; spec->digbeep_nid = 0x26; spec->mux_nids = stac92hd71bxx_mux_nids; |