From nobody Tue Dec 30 14:49:31 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 8CB7EC4332F for ; Tue, 14 Nov 2023 13:38:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232488AbjKNNii (ORCPT ); Tue, 14 Nov 2023 08:38:38 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40472 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229501AbjKNNih (ORCPT ); Tue, 14 Nov 2023 08:38:37 -0500 Received: from mail.malych.org (gateway.malych.org [185.150.1.6]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CAB531B9 for ; Tue, 14 Nov 2023 05:38:33 -0800 (PST) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 15682AA8C67; Tue, 14 Nov 2023 14:38:25 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=malych.org; s=dkim; t=1699969110; h=from:subject:date:message-id:to:cc:mime-version: content-transfer-encoding:in-reply-to:references; bh=M2W/mJKe/9mkt7dXkYSPCn0UkTJjRbISNIwGBXbQaKM=; b=Zvk4ID63K95XkuTNq3EqXHqlYuoJDscu0bATZmkk9sTVw0XWCfUSFv2gepdklKwN+pF/vL XnvT2jOFSCcejZ/v/TitswpuZFE52HvN9ZnMDqbkDP9UHcKeHOYadGQBoTWalV+APnWoc2 g7ML7e+Z5ioVxfZY6VjNyOFbfeBLO4E+ScYRfDCs/ckDTZeCkgRO6+MeNXTkNDfeWXZO/w nTDIBsU+ajdjap+QzEmmct503FFGNx4X0YDxRGvgHSKrYNGlUabwYy7dlatujApVJ9K2Z0 0gonxONj4Glg3EwdaABOKuVt0nTsD1co1NfgSTbyF2fXKCvr4szbuSVhdJDTew== From: Matus Malych To: tiwai@suse.com Cc: alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org, Matus Malych Subject: [PATCH v2] ALSA: hda/realtek: Enable Mute LED on HP 255 G10 Date: Tue, 14 Nov 2023 14:35:25 +0100 Message-Id: <20231114133524.11340-1-matus@malych.org> In-Reply-To: <87r0kuoug5.wl-tiwai@suse.de> References: <87r0kuoug5.wl-tiwai@suse.de> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Last-TLS-Session-Version: TLSv1.3 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" HP 255 G10 has a mute LED that can be made to work using quirk ALC236_FIXUP_HP_MUTE_LED_COEFBIT2. Enable already existing quirk - at correct line to keep order Signed-off-by: Matus Malych --- 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 cdd808e02b44..3c85b8247c11 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -9868,6 +9868,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = =3D { SND_PCI_QUIRK(0x103c, 0x8abb, "HP ZBook Firefly 14 G9", ALC245_FIXUP_CS35= L41_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, 0x8b2f, "HP 255 15.6 inch G10 Notebook PC", ALC236_= FIXUP_HP_MUTE_LED_COEFBIT2), SND_PCI_QUIRK(0x103c, 0x8b42, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LE= D), SND_PCI_QUIRK(0x103c, 0x8b43, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LE= D), SND_PCI_QUIRK(0x103c, 0x8b44, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LE= D), --=20 2.34.1