From nobody Sun Sep 14 20:23:21 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 958ECC32793 for ; Wed, 18 Jan 2023 12:34:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230151AbjARMeX (ORCPT ); Wed, 18 Jan 2023 07:34:23 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37092 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230023AbjARMdu (ORCPT ); Wed, 18 Jan 2023 07:33:50 -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 6C8073D919 for ; Wed, 18 Jan 2023 03:55:33 -0800 (PST) Received: from localhost (unknown [10.101.194.46]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-1.canonical.com (Postfix) with ESMTPSA id F2FBB4380E; Wed, 18 Jan 2023 11:55:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com; s=20210705; t=1674042931; bh=enMrnZ1NgbyIaq3oUPzczhRNRwFvL8TyynmSSMWT7Bc=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=VNmU38aP619JjJyJWfip2fvASugjCQgI7qHXaZpwHeOdeTA1qvx854HHdstgkMfqt hzpCNmENZ8ScmSUXg/mlOYH2obotHrSDaKsnhmKAf3DarG39q4NKHibnVg7WubgTuR Syf4fPuIFX6FJ/DvaHgiEKlsO/coQpuU2wjKXzQquNK15bUoFTbZJwKcPbNa/H/Lo6 6uJafDtii7yiyKB253Jif6iQTFY2ZND7ELKFzZX0+t9Vmc6yys3YMTmbte1QieXTno wVZ4YxiQUAUog6R5TEMkzvQVD3vUrINT7mXraHjZl1ZB6CZMofjsjqaxiFpjO5tQ/m V41o3uYo16aCw== From: Jeremy Szu To: tiwai@suse.com Cc: Jeremy Szu , Jaroslav Kysela , Tim Crawford , Stefan Binding , Meng Tang , Kai-Heng Feng , Philipp Jungkamp , =?UTF-8?q?Kacper=20Michaj=C5=82ow?= , Lucas Tanure , Gabriele Mazzotta , Yuchi Yang , alsa-devel@alsa-project.org (moderated list:SOUND), linux-kernel@vger.kernel.org (open list) Subject: [PATCH] ALSA: hda/realtek: fix mute/micmute LEDs, speaker don't work for a HP platform Date: Wed, 18 Jan 2023 19:54:45 +0800 Message-Id: <20230118115446.14902-1-jeremy.szu@canonical.com> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" There is a HP platform needs ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED quirk to make mic-mute/audio-mute/speaker working. Signed-off-by: Jeremy Szu --- sound/pci/hda/patch_realtek.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 6fab7c8fc19a..02905336781a 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -9432,6 +9432,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = =3D { 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(0x103c, 0x8b92, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LE= D), SND_PCI_QUIRK(0x103c, 0x8bf0, "HP", 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), --=20 2.38.1