]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ALSA: hda - Fix polarity of mute LED on HP Mini 210
authorTakashi Iwai <tiwai@suse.de>
Tue, 31 Jul 2012 08:16:59 +0000 (10:16 +0200)
committerTakashi Iwai <tiwai@suse.de>
Tue, 31 Jul 2012 08:19:17 +0000 (10:19 +0200)
The commit a3e199732b made the LED working again on HP Mini 210 but
with a wrong polarity.  This patch fixes the polarity for this
machine, and also introduce a new model string "hp-inv-led".

Bugzilla: https://bugzilla.novell.com/show_bug.cgi?id=772923

Cc: <stable@vger.kernel.org> [v3.3+]
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/patch_sigmatel.c

index 217ee1f344b873a4bb0354780339085141cf761c..a760c30f1caaf1babf41f81c2fbec0055af2be1b 100644 (file)
@@ -102,6 +102,7 @@ enum {
        STAC_HP_DV7_4000,
        STAC_HP_ZEPHYR,
        STAC_92HD83XXX_HP_LED,
+       STAC_92HD83XXX_HP_INV_LED,
        STAC_92HD83XXX_MODELS
 };
 
@@ -1677,6 +1678,7 @@ static const char * const stac92hd83xxx_models[STAC_92HD83XXX_MODELS] = {
        [STAC_HP_DV7_4000] = "hp-dv7-4000",
        [STAC_HP_ZEPHYR] = "hp-zephyr",
        [STAC_92HD83XXX_HP_LED] = "hp-led",
+       [STAC_92HD83XXX_HP_INV_LED] = "hp-inv-led",
 };
 
 static const struct snd_pci_quirk stac92hd83xxx_cfg_tbl[] = {
@@ -5561,6 +5563,9 @@ again:
                spec->init = stac92hd83xxx_hp_zephyr_init;
                break;
        case STAC_92HD83XXX_HP_LED:
+               default_polarity = 0;
+               break;
+       case STAC_92HD83XXX_HP_INV_LED:
                default_polarity = 1;
                break;
        }