Skip to content

Commit

Permalink
ALSA: hda - Fix polarity of mute LED on HP Mini 210
Browse files Browse the repository at this point in the history
The commit a3e1997 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: <[email protected]> [v3.3+]
Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
tiwai committed Jul 31, 2012
1 parent e5b3542 commit ff8a1e2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions sound/pci/hda/patch_sigmatel.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ enum {
STAC_HP_DV7_4000,
STAC_HP_ZEPHYR,
STAC_92HD83XXX_HP_LED,
STAC_92HD83XXX_HP_INV_LED,
STAC_92HD83XXX_MODELS
};

Expand Down Expand Up @@ -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[] = {
Expand Down Expand Up @@ -5561,6 +5563,9 @@ static int patch_stac92hd83xxx(struct hda_codec *codec)
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;
}
Expand Down

0 comments on commit ff8a1e2

Please sign in to comment.