Skip to content

Commit fd06c77

Browse files
khfengtiwai
authored andcommitted
ALSA: hda - Enable subwoofer on Dell Inspiron 7559
The subwoofer on Inspiron 7559 was disabled originally. Applying a pin fixup to node 0x1b can enable it and make it work. Old pin: 0x411111f0 New pin: 0x90170151 Signed-off-by: Kai-Heng Feng <[email protected]> Cc: <[email protected]> Signed-off-by: Takashi Iwai <[email protected]>
1 parent 311042d commit fd06c77

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

sound/pci/hda/patch_realtek.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4855,6 +4855,7 @@ enum {
48554855
ALC221_FIXUP_HP_FRONT_MIC,
48564856
ALC292_FIXUP_TPT460,
48574857
ALC298_FIXUP_SPK_VOLUME,
4858+
ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER,
48584859
};
48594860

48604861
static const struct hda_fixup alc269_fixups[] = {
@@ -5516,6 +5517,15 @@ static const struct hda_fixup alc269_fixups[] = {
55165517
.chained = true,
55175518
.chain_id = ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
55185519
},
5520+
[ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = {
5521+
.type = HDA_FIXUP_PINS,
5522+
.v.pins = (const struct hda_pintbl[]) {
5523+
{ 0x1b, 0x90170151 },
5524+
{ }
5525+
},
5526+
.chained = true,
5527+
.chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
5528+
},
55195529
};
55205530

55215531
static const struct snd_pci_quirk alc269_fixup_tbl[] = {
@@ -5560,6 +5570,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
55605570
SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
55615571
SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
55625572
SND_PCI_QUIRK(0x1028, 0x0704, "Dell XPS 13 9350", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE),
5573+
SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
55635574
SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE),
55645575
SND_PCI_QUIRK(0x1028, 0x075b, "Dell XPS 13 9360", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE),
55655576
SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME),

0 commit comments

Comments
 (0)