From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 133AE225785; Mon, 23 Jun 2025 21:59:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750715954; cv=none; b=lyS39bW9DtZA22xHTExjzfflAyEZnukzsDNuxq94s4c1IMzIiX3Tz2Lh/YaQKrF9kM4aiGnOqmQHvbAy1O9lrwrhmNALH+mllJKufV0gGit38tUx8FHC86weXXgJZJYDVHLSYZTi8nmy/I1riEchUrkrnvMt+tz2Ma96z8PUnhE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750715954; c=relaxed/simple; bh=UuQ29DWcrfBsX/fe+HKGGrpB0Cjyef1sJr/3TPslSeE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=VDpr0b9COsEgpuHOUv2rw9SRNu4Cf1rXSBEUOzscDdu1wTK/dNE+MUO9q755KiiZvkS9wYYKm0vJF27zrzhNBcDpZeQ3G2Rv9xIf2FKHloyNzzbCxXo6NkCyBCPWksPDxXq5ybA9wxFF3rnQ53aKoMV1kLuneb3zmSPzkY213ug= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=yyq+IOap; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="yyq+IOap" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 97A92C4CEF1; Mon, 23 Jun 2025 21:59:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1750715953; bh=UuQ29DWcrfBsX/fe+HKGGrpB0Cjyef1sJr/3TPslSeE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=yyq+IOap7ljxNDVbzPLwCIVE3Uxsm5OZdYV7MsgaGARkOgD2pzo3dpHsYlTkgbjVq xZXXg/BAW+2w4yrSC15nbgXZ1qfPEwrlg2Vtagcj2gXpp1P/c4ZBOo5RrYP7ohd0S4 VDMZTv49yWPjjJWyv0QuTq6roWR+o/pDWbZdnZ2Q= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jonathan Lane , Takashi Iwai Subject: [PATCH 6.15 493/592] ALSA: hda/realtek: enable headset mic on Latitude 5420 Rugged Date: Mon, 23 Jun 2025 15:07:31 +0200 Message-ID: <20250623130712.157327830@linuxfoundation.org> X-Mailer: git-send-email 2.50.0 In-Reply-To: <20250623130700.210182694@linuxfoundation.org> References: <20250623130700.210182694@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Jonathan Lane commit efa6bdf1bc75e26cafaa5f1d775e8bb7c5b0c431 upstream. Like many Dell laptops, the 3.5mm port by default can not detect a combined headphones+mic headset or even a pure microphone. This change enables the port's functionality. Signed-off-by: Jonathan Lane Cc: Link: https://patch.msgid.link/20250611193124.26141-2-jon@borg.moe Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- sound/pci/hda/patch_realtek.c | 1 + 1 file changed, 1 insertion(+) --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -10509,6 +10509,7 @@ static const struct hda_quirk alc269_fix SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC), SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC), SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB), + SND_PCI_QUIRK(0x1028, 0x0879, "Dell Latitude 5420 Rugged", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1028, 0x08ad, "Dell WYSE AIO", ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1028, 0x08ae, "Dell WYSE NB", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),