]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - src/patches/suse-2.6.27.31/patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix
Revert "Move xen patchset to new version's subdir."
[ipfire-2.x.git] / src / patches / suse-2.6.27.31 / patches.drivers / alsa-hda-stac-92hd71bxx-gpio-fix
diff --git a/src/patches/suse-2.6.27.31/patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix b/src/patches/suse-2.6.27.31/patches.drivers/alsa-hda-stac-92hd71bxx-gpio-fix
deleted file mode 100644 (file)
index 974aecd..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-From: Takashi Iwai <tiwai@suse.de>
-Subject: ALSA: hda - Fix GPIO initialization in patch_stac92hd71bxx()
-Patch-mainline: 
-References: bnc#445321,bnc#445161
-
-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>
-
----
- sound/pci/hda/patch_sigmatel.c |   14 +++++++-------
- 1 file changed, 7 insertions(+), 7 deletions(-)
-
---- a/sound/pci/hda/patch_sigmatel.c
-+++ b/sound/pci/hda/patch_sigmatel.c
-@@ -4482,6 +4482,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:
-@@ -4541,13 +4548,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;