Skip to content

Commit 00f32df

Browse files
committed
Merge tag 'asoc-fix-v6.19-rc7' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v6.19 A couple of small fixes and a couple of quirks, nothing major
2 parents 9e18920 + 94e5baf commit 00f32df

4 files changed

Lines changed: 11 additions & 2 deletions

File tree

sound/soc/amd/yc/acp6x-mach.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -682,6 +682,14 @@ static const struct dmi_system_id yc_acp_quirk_table[] = {
682682
DMI_MATCH(DMI_PRODUCT_NAME, "GOH-X"),
683683
}
684684
},
685+
{
686+
.driver_data = &acp6x_card,
687+
.matches = {
688+
DMI_MATCH(DMI_BOARD_VENDOR, "RB"),
689+
DMI_MATCH(DMI_BOARD_NAME, "XyloD5_RBU"),
690+
}
691+
},
692+
685693
{}
686694
};
687695

sound/soc/intel/boards/sof_es8336.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ static void pcm_pop_work_events(struct work_struct *work)
120120
gpiod_set_value_cansleep(priv->gpio_speakers, priv->speaker_en);
121121

122122
if (quirk & SOF_ES8336_HEADPHONE_GPIO)
123-
gpiod_set_value_cansleep(priv->gpio_headphone, priv->speaker_en);
123+
gpiod_set_value_cansleep(priv->gpio_headphone, !priv->speaker_en);
124124

125125
}
126126

sound/soc/intel/boards/sof_sdw.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -838,6 +838,7 @@ static const struct snd_pci_quirk sof_sdw_ssid_quirk_table[] = {
838838
SND_PCI_QUIRK(0x17aa, 0x2347, "Lenovo P16", SOC_SDW_CODEC_MIC),
839839
SND_PCI_QUIRK(0x17aa, 0x2348, "Lenovo P16", SOC_SDW_CODEC_MIC),
840840
SND_PCI_QUIRK(0x17aa, 0x2349, "Lenovo P1", SOC_SDW_CODEC_MIC),
841+
SND_PCI_QUIRK(0x17aa, 0x3821, "Lenovo 0x3821", SOC_SDW_SIDECAR_AMPS),
841842
{}
842843
};
843844

sound/soc/intel/common/soc-acpi-intel-ptl-match.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ static const struct snd_soc_acpi_adr_device rt1320_2_group2_adr[] = {
442442
.adr = 0x000230025D132001ull,
443443
.num_endpoints = 1,
444444
.endpoints = &spk_r_endpoint,
445-
.name_prefix = "rt1320-1"
445+
.name_prefix = "rt1320-2"
446446
}
447447
};
448448

0 commit comments

Comments
 (0)