From nobody Fri Sep 19 06:58:01 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 15C2DC47089 for ; Mon, 28 Nov 2022 02:29:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229650AbiK1C3o (ORCPT ); Sun, 27 Nov 2022 21:29:44 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39912 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229552AbiK1C3n (ORCPT ); Sun, 27 Nov 2022 21:29:43 -0500 Received: from smtp-relay-canonical-1.canonical.com (smtp-relay-canonical-1.canonical.com [185.125.188.121]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 269EAE0A6 for ; Sun, 27 Nov 2022 18:29:42 -0800 (PST) Received: from localhost.localdomain (unknown [10.101.197.31]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-1.canonical.com (Postfix) with ESMTPSA id 7C1FC41EDF; Mon, 28 Nov 2022 02:29:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com; s=20210705; t=1669602578; bh=KWB8E+5B5kOpEDikUKzA61AjtftG8lmxhbq5+kiKMUw=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=t2DVMFGqCGUMIl/YWfJ91ivWXu2abd804y9e5cxBZar0Wko1MPWP8LnP4ob6f1b9y ex3Vba31lxK7gSjrkMHc6PzBPmbOLLNExHdikDhgcmY19TXoDoxKkjaAIQV9DWiWko CPnK6gweu48q3S53vX/V8walzkRWVudtc5jikptk08YqQgCoI0nbpIwTd0JdlSON4r kShWqHrIB+Dllc1FUvCir2PBCbs7o/6/sq7nw4ytxipIXndm2u0sD35Sxglhg06pKm 68M22eVAGXx1d5SrlNFBrwCCy1L2PoBRkqIqv58umHLYQOvvXNxpb70REbgiERSeM9 z4FdX650mJH6g== From: Andy Chi Cc: Andy Chi , Jaroslav Kysela , Takashi Iwai , Stefan Binding , Tim Crawford , Meng Tang , Kai-Heng Feng , Lucas Tanure , Philipp Jungkamp , Kailang Yang , Werner Sembach , alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org Subject: [PATCH] ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook Date: Mon, 28 Nov 2022 10:28:47 +0800 Message-Id: <20221128022849.13759-1-andy.chi@canonical.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable To: unlisted-recipients:; (no To-header on input) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" There is a HP ProBook which using ALC236 codec and need the ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF quirk to make mute LED and micmute LED work. Signed-off-by: Andy Chi --- sound/pci/hda/patch_realtek.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index e5c036385666..cf7c825078dc 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -9354,6 +9354,8 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = =3D { SND_PCI_QUIRK(0x103c, 0x8abb, "HP ZBook Firefly 14 G9", ALC245_FIXUP_CS3= 5L41_SPI_2_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8ad1, "HP EliteBook 840 14 inch G9 Notebook PC", = ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8ad2, "HP EliteBook 860 16 inch G9 Notebook PC", = ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), + SND_PCI_QUIRK(0x103c, 0x8b5d, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF= ), + SND_PCI_QUIRK(0x103c, 0x8b5e, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF= ), 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_BO= OST), --=20 2.34.1