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 909EB1AD3FA; Mon, 23 Jun 2025 21:56:20 +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=1750715780; cv=none; b=dihfsTpPoCwp8AIJKqJkl2LoMItxfzdBo6mw0aWO83w/2LjHHDiep/TLcRi5q9DR+L6lrGR/mnlcWzgVCZqriUpdaOfCEPoT2mTFh0/IMRIEpqi9I1KTV+NzCJUgKCaaev7mW7OOhhEmmsL9A97z8SAbJ8jDkzHL8TgVYKDPnUo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750715780; c=relaxed/simple; bh=zg61Hd4iI/yAZrn/cYIgjUnZAKgbkTeGzZBI4fBQQTk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=HcCfeRd+jG6z91NjrKOU/zVeVLHNjeaf/vH++hvQ9Tq0Ij0hx+461hdvS+lAg9TbCuRWCLrSIsjdv4R5tPWNDcC8Ju1Vue+KIGCkzHB8U6p5s+fgI9FKc9d2uVuvKePvOXTPmKdTNfBCh9+N8sE7GNodoh72keHPdgJJYmw0J28= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=hLd3aczD; 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="hLd3aczD" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2950EC4CEEA; Mon, 23 Jun 2025 21:56:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1750715780; bh=zg61Hd4iI/yAZrn/cYIgjUnZAKgbkTeGzZBI4fBQQTk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=hLd3aczDfHoTloW6B+dc5D8anZgWvqb1EBXw5GDFFsCXZHv0BrbEMzNPP+EmX9epo kcVkzb1roUYqe3FcLuVuWw2tlxDdKqjev9JXf+h5xRT6N9uVG8mo4gUUxs64jT6m6V IY4721uRMkXB+FKJnMUTWmXKBYPGHmdBmHSHaudE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jonathan Lane , Takashi Iwai Subject: [PATCH 5.10 296/355] ALSA: hda/realtek: enable headset mic on Latitude 5420 Rugged Date: Mon, 23 Jun 2025 15:08:17 +0200 Message-ID: <20250623130635.674525716@linuxfoundation.org> X-Mailer: git-send-email 2.50.0 In-Reply-To: <20250623130626.716971725@linuxfoundation.org> References: <20250623130626.716971725@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.10-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 @@ -9151,6 +9151,7 @@ static const struct snd_pci_quirk alc269 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),