mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
ALSA: hda - Add pin fixups for ASUS G75
To parse properly the subwoofer outputs on ASUS G75 laptop with VT1802 codec, correct the default configurations of speaker pins 0x24 and 0x33. Reported-by: Massimo Del Fedele <max@veneto.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
ef4da45828
commit
d5266125fb
@ -3625,6 +3625,7 @@ static void set_widgets_power_state_vt2002P(struct hda_codec *codec)
|
||||
*/
|
||||
enum {
|
||||
VIA_FIXUP_INTMIC_BOOST,
|
||||
VIA_FIXUP_ASUS_G75,
|
||||
};
|
||||
|
||||
static void via_fixup_intmic_boost(struct hda_codec *codec,
|
||||
@ -3639,9 +3640,19 @@ static const struct hda_fixup via_fixups[] = {
|
||||
.type = HDA_FIXUP_FUNC,
|
||||
.v.func = via_fixup_intmic_boost,
|
||||
},
|
||||
[VIA_FIXUP_ASUS_G75] = {
|
||||
.type = HDA_FIXUP_PINS,
|
||||
.v.pins = (const struct hda_pintbl[]) {
|
||||
/* set 0x24 and 0x33 as speakers */
|
||||
{ 0x24, 0x991301f0 },
|
||||
{ 0x33, 0x991301f1 }, /* subwoofer */
|
||||
{ }
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
static const struct snd_pci_quirk vt2002p_fixups[] = {
|
||||
SND_PCI_QUIRK(0x1043, 0x1487, "Asus G75", VIA_FIXUP_ASUS_G75),
|
||||
SND_PCI_QUIRK(0x1043, 0x8532, "Asus X202E", VIA_FIXUP_INTMIC_BOOST),
|
||||
{}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user