Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 182645
b: refs/heads/master
c: 043958e
h: refs/heads/master
i:
  182643: 9a5de0e
v: v3
  • Loading branch information
Takashi Iwai committed Dec 26, 2009
1 parent 0d7b326 commit c37169d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 15e7f8b92aed71819411025279cd3df37f8c636b
refs/heads/master: 043958e602ac2cbf918c0dab1e4e2a7f9751ebf6
14 changes: 14 additions & 0 deletions trunk/sound/pci/hda/patch_sigmatel.c
Original file line number Diff line number Diff line change
Expand Up @@ -4184,9 +4184,23 @@ static void stac_store_hints(struct hda_codec *codec)
p = snd_hda_get_hint(codec, "eapd_mask");
if (p)
spec->eapd_mask = simple_strtoul(p, NULL, 0) & spec->gpio_mask;
p = snd_hda_get_hint(codec, "gpio_mute");
if (p)
spec->gpio_mute = simple_strtoul(p, NULL, 0) & spec->gpio_mask;
val = snd_hda_get_bool_hint(codec, "eapd_switch");
if (val >= 0)
spec->eapd_switch = val;
p = snd_hda_get_hint(codec, "gpio_led_polarity");
if (p)
spec->gpio_led_polarity = simple_strtoul(p, NULL, 0);
p = snd_hda_get_hint(codec, "gpio_led");
if (p) {
spec->gpio_led = simple_strtoul(p, NULL, 0);
spec->gpio_mask |= spec->gpio_led;
spec->gpio_dir |= spec->gpio_led;
if (spec->gpio_led_polarity)
spec->gpio_data |= spec->gpio_led;
}
}

static int stac92xx_init(struct hda_codec *codec)
Expand Down

0 comments on commit c37169d

Please sign in to comment.