Skip to content

Commit 494d093

Browse files
KailangYangtiwai
authored andcommitted
ALSA: hda/realtek - Enable speaker for HP platform
The speaker doesn't mute when plugged headphone. This platform support 4ch speakers. The speaker pin 0x14 wasn't fill verb table. After assigned model ALC245_FIXUP_HP_SPECTRE_X360_EU0XXX. The speaker can mute when headphone was plugged. Fixes: aa8e3ef ("ALSA: hda/realtek: Add quirks for various HP ENVY models") Signed-off-by: Kailang Yang <kailang@realtek.com> Link: https://lore.kernel.org/eb4c14a4d85740069c909e756bbacb0e@realtek.com Signed-off-by: Takashi Iwai <tiwai@suse.de>
1 parent 7338856 commit 494d093

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

sound/pci/hda/patch_realtek.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -441,19 +441,19 @@ static void alc_fill_eapd_coef(struct hda_codec *codec)
441441
alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
442442
fallthrough;
443443
case 0x10ec0215:
444+
case 0x10ec0236:
445+
case 0x10ec0245:
446+
case 0x10ec0256:
447+
case 0x10ec0257:
444448
case 0x10ec0285:
445449
case 0x10ec0289:
446450
alc_update_coef_idx(codec, 0x36, 1<<13, 0);
447451
fallthrough;
448452
case 0x10ec0230:
449453
case 0x10ec0233:
450454
case 0x10ec0235:
451-
case 0x10ec0236:
452-
case 0x10ec0245:
453455
case 0x10ec0255:
454-
case 0x10ec0256:
455456
case 0x19e58326:
456-
case 0x10ec0257:
457457
case 0x10ec0282:
458458
case 0x10ec0283:
459459
case 0x10ec0286:
@@ -10768,8 +10768,8 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
1076810768
SND_PCI_QUIRK(0x103c, 0x8ca7, "HP ZBook Fury", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
1076910769
SND_PCI_QUIRK(0x103c, 0x8caf, "HP Elite mt645 G8 Mobile Thin Client", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
1077010770
SND_PCI_QUIRK(0x103c, 0x8cbd, "HP Pavilion Aero Laptop 13-bg0xxx", ALC245_FIXUP_HP_X360_MUTE_LEDS),
10771-
SND_PCI_QUIRK(0x103c, 0x8cdd, "HP Spectre", ALC287_FIXUP_CS35L41_I2C_2),
10772-
SND_PCI_QUIRK(0x103c, 0x8cde, "HP Spectre", ALC287_FIXUP_CS35L41_I2C_2),
10771+
SND_PCI_QUIRK(0x103c, 0x8cdd, "HP Spectre", ALC245_FIXUP_HP_SPECTRE_X360_EU0XXX),
10772+
SND_PCI_QUIRK(0x103c, 0x8cde, "HP OmniBook Ultra Flip Laptop 14t", ALC245_FIXUP_HP_SPECTRE_X360_EU0XXX),
1077310773
SND_PCI_QUIRK(0x103c, 0x8cdf, "HP SnowWhite", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
1077410774
SND_PCI_QUIRK(0x103c, 0x8ce0, "HP SnowWhite", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
1077510775
SND_PCI_QUIRK(0x103c, 0x8cf5, "HP ZBook Studio 16", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),

0 commit comments

Comments
 (0)