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 224FA2E612F; Tue, 15 Jul 2025 13:50: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=1752587416; cv=none; b=Mz48BjAT8yaE7VOZY+XMmA7htn6Xa9EaAp9bwP6CIAHeXNfccXbL6XYD6ucTsQlj+A7IIH4OGOWnaZVLQjzP+VskvjAYvVmOOJbLOAusqSCW4leLZuxhhD11XRqgavZFHWpXa0iUEPWIJSt9Qn28PzhCYF3sqPfRN1JVhUa255k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752587416; c=relaxed/simple; bh=zusDbiQOFW4tjxWb2qd2jpBL6DfxaGqt1zV6or37DN8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=c//uRpH2U+oHQr3P7WPZRgy64DPA/NPdGJUZOCgn2lNEa7uZQZmDBRUob801cUpn8rZdjZ2HmLJiqJ5dzB1HlRcgiZKPR3KkU5T/ROLagsg9ZNpotRERYXSLFHgVb762Ljfu7f2dlVtpNooxwY3qK83fF6kwvUV0/35y7TUAiNA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=tKRPHwVa; 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="tKRPHwVa" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A7F13C4CEF7; Tue, 15 Jul 2025 13:50:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1752587416; bh=zusDbiQOFW4tjxWb2qd2jpBL6DfxaGqt1zV6or37DN8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=tKRPHwVaE8I5Hs2bCwgcu45N/vDrpfIg4Ly/o+jbnahSzlJCqIeXw5xjGE5dbaP8B 50tWBhPGesqHQc2N5nYOJjGjA3C5lmpK1bgb3OCIqq9ldxcmnRFO0QBRcjX1Rj+Zj+ ZNi0y4c9/aPodHHsFzueaH7s6GnZ+auHoo4G9MQU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Yasmin Fitzgerald , Takashi Iwai , Sasha Levin Subject: [PATCH 6.1 76/88] ALSA: hda/realtek - Enable mute LED on HP Pavilion Laptop 15-eg100 Date: Tue, 15 Jul 2025 15:14:52 +0200 Message-ID: <20250715130757.623967767@linuxfoundation.org> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20250715130754.497128560@linuxfoundation.org> References: <20250715130754.497128560@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 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Yasmin Fitzgerald [ Upstream commit 68cc9d3c8e44afe90e43cbbd2960da15c2f31e23 ] The HP Pavilion Laptop 15-eg100 has Realtek HDA codec ALC287. It needs the ALC287_FIXUP_HP_GPIO_LED quirk to enable the mute LED. Signed-off-by: Yasmin Fitzgerald Link: https://patch.msgid.link/20250621053832.52950-1-sunoflife1.git@gmail.com Signed-off-by: Takashi Iwai Signed-off-by: Sasha Levin --- 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 13b3ec78010a0..f0c67b6af33ae 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -9995,6 +9995,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = { SND_PCI_QUIRK(0x103c, 0x8975, "HP EliteBook x360 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x897d, "HP mt440 Mobile Thin Client U74", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8981, "HP Elite Dragonfly G3", ALC245_FIXUP_CS35L41_SPI_4), + SND_PCI_QUIRK(0x103c, 0x898a, "HP Pavilion 15-eg100", ALC287_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x898e, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2), SND_PCI_QUIRK(0x103c, 0x898f, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2), SND_PCI_QUIRK(0x103c, 0x8991, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED), -- 2.39.5