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 F35621CDFAC; Sun, 7 Sep 2025 20:08:16 +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=1757275697; cv=none; b=Fklaj3ptBka3iVOt+xlHjTgM2+2OEuMylIG5nhjxq4WeGMDB1EXcyVVOP85Derg28Mw+NbNoey08CvsGmyn9GMns9zgknemCT8qAqicR54MHeMt0BFjmEelAuDr3fGyC9bCJGpm0PyJtvWWIEr/SYEHMk2FxhJbyPsOCWO97J+4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1757275697; c=relaxed/simple; bh=u89vPNxYkKpzdM4P1bTUp2zZcPjModSqt7VtyzO+wwo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=kJqNgdlO3NRzHm2CGbWrTsctrLKt6MbBQr/b2SMDyOIAfSVhm1GAGwutvwN2VL8ZTzxCFpgE1r1USfD5nMdQ0leh+vQdNoFowHecKSpWo8kenTFNpuw1FQSnosXsdGhxfyh6aY8lOgqHZkl1b7t75PLGZDug2aggl+6N4sCSvvM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=mmzrZ7/Y; 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="mmzrZ7/Y" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 79CAEC4CEF0; Sun, 7 Sep 2025 20:08:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1757275696; bh=u89vPNxYkKpzdM4P1bTUp2zZcPjModSqt7VtyzO+wwo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=mmzrZ7/Yr+407lB5XI1N8V8gzlBWCH9MgPIyFTcEopgJjvFCTnOGSYdV+62MjexA2 85f9En1TBMY0EHIMxaWauigtwKOo/tpJD4Qr1oiZCpV7isvzv+h0HGpaoOAdjtrFAl NnlUQGTGlQDPaYP9LzAFOzw8uxbw0/QsPZU5ZiMQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Chris Chiu , Takashi Iwai , Sasha Levin Subject: [PATCH 5.10 34/52] ALSA: hda/realtek - Add new HP ZBook laptop with micmute led fixup Date: Sun, 7 Sep 2025 21:57:54 +0200 Message-ID: <20250907195602.968556094@linuxfoundation.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250907195601.957051083@linuxfoundation.org> References: <20250907195601.957051083@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: Chris Chiu [ Upstream commit f709b78aecab519dbcefa9a6603b94ad18c553e3 ] New HP ZBook with Realtek HDA codec ALC3247 needs the quirk ALC236_FIXUP_HP_GPIO_LED to fix the micmute LED. Signed-off-by: Chris Chiu Cc: Link: https://patch.msgid.link/20250520132101.120685-1-chris.chiu@canonical.com Signed-off-by: Takashi Iwai [ Adjust context ] Signed-off-by: Sasha Levin 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 @@ -9322,6 +9322,7 @@ static const struct snd_pci_quirk alc269 SND_PCI_QUIRK(0x103c, 0x8895, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED), SND_PCI_QUIRK(0x103c, 0x8896, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_MUTE_LED), SND_PCI_QUIRK(0x103c, 0x89aa, "HP EliteBook 630 G9", ALC236_FIXUP_HP_GPIO_LED), + SND_PCI_QUIRK(0x103c, 0x8e1d, "HP ZBook X Gli 16 G12", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC), SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300), SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),