From nobody Fri May 8 01:40:02 2026 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 B1A75C433F5 for ; Fri, 13 May 2022 12:17:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1380176AbiEMMRH (ORCPT ); Fri, 13 May 2022 08:17:07 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34174 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232430AbiEMMRD (ORCPT ); Fri, 13 May 2022 08:17:03 -0400 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 B2D1E5B8B7 for ; Fri, 13 May 2022 05:17:01 -0700 (PDT) Received: from localhost.localdomain (36-224-20-13.dynamic-ip.hinet.net [36.224.20.13]) (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 AC8B140EA3; Fri, 13 May 2022 12:16:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com; s=20210705; t=1652444219; bh=zpPamNIe5x7qFXF/OVnZBnuSxsglTL0lZevhE7aPyP0=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=uOBgy7oruCX+Q3UEOLr5T167LksjkHajySIkHNDNDAwx0FcBUuDY1iA9Qg8c8Ebuo 3KYzzXjQv+uFDI4X/cKRruHTs3qbtQyOB7P99ItqeKCwuGtiAdY/gwmoNxnukwFG9X pCrYgSz6GhfYFhrvKHjPcw4FLhCGmgC4kAIkCLJ5dVwg5Nbn45YFJIullolOq3P+H5 wcFNdKxjBjqKh1XDYnqzcZYp/EBlM7HEmKseFy0upGPK9V/amFUe1axVwG+KYJrS4s 4alRJBppRpI7hShEL2PwEb08gLpXTPOieaDcsjjczuDmv7OP1ARH9tahbfLQfbl/37 R6b9AlnQr/e1Q== From: Andy Chi Cc: andy.chi@canonical.com, Jaroslav Kysela , Takashi Iwai , Jeremy Szu , Werner Sembach , Kai-Heng Feng , Lucas Tanure , Cameron Berkenpas , Kailang Yang , Yong Wu , Elia Devito , alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org Subject: [PATCH] ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine Date: Fri, 13 May 2022 20:16:45 +0800 Message-Id: <20220513121648.28584-1-andy.chi@canonical.com> X-Mailer: git-send-email 2.25.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" * The HP EliteBook 630 is using ALC236 codec which used 0x02 to control mut= e LED and 0x01 to control micmute LED. Therefore, add a quirk to make it works. Signed-off-by: Andy Chi --- 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 33c439578a61..3a1500e487eb 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -9091,6 +9091,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = =3D { SND_PCI_QUIRK(0x103c, 0x8995, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41= _I2C_2), SND_PCI_QUIRK(0x103c, 0x89a4, "HP ProBook 440 G9", ALC236_FIXUP_HP_GPIO_L= ED), SND_PCI_QUIRK(0x103c, 0x89a6, "HP ProBook 450 G9", ALC236_FIXUP_HP_GPIO_L= ED), + SND_PCI_QUIRK(0x103c, 0x89aa, "HP EliteBook 630 G9", ALC236_FIXUP_HP_GPIO= _LED), SND_PCI_QUIRK(0x103c, 0x89ac, "HP EliteBook 640 G9", ALC236_FIXUP_HP_GPIO= _LED), SND_PCI_QUIRK(0x103c, 0x89ae, "HP EliteBook 650 G9", ALC236_FIXUP_HP_GPIO= _LED), SND_PCI_QUIRK(0x103c, 0x89c3, "Zbook Studio G9", ALC245_FIXUP_CS35L41_SPI= _4_HP_GPIO_LED), --=20 2.25.1