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 92A852512F3; Thu, 3 Apr 2025 15:23:17 +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=1743693797; cv=none; b=gofDswkqT8aYaZ0zvwg9DyRDNgJXsadqq0TKjUt5jEzm4siMGcuy4EQmeD5RuUIFXsBvr/kTGqNfeP66uDd1/BcCOiuL2PqJJaE1oUogBv8o0gfyo2uCvpGCpOOZXmGpLNXlH3NuySZtf2IW/70BV1gH+Hbbcpvu4Fv2Aq3KFc4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743693797; c=relaxed/simple; bh=HMyAtbyqNYvxMFlKaPaDpgnhZfhMzYABZfsF22msO4w=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=L+tKYeorK7gpubrZBPe6RTHZhLUPlyk1jiV1JBB9mvqEEdxMPviiDQ5vRT7oYcyTRHA+OW17+2S95tGFy9MVw0fe1HsxmRS4Q+DDzyQxhkoDQGjKVJY7HaelgudYPFhEC0vS8d+RkRBo5HpZ9fJm9tbfXJ9okjRMQfiP5tUIDlE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=tepiU7Hd; 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="tepiU7Hd" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CD766C4CEF0; Thu, 3 Apr 2025 15:23:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1743693797; bh=HMyAtbyqNYvxMFlKaPaDpgnhZfhMzYABZfsF22msO4w=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=tepiU7HduEMhPiQLLe/xMUdo+bqTzcLjEMd3zwMeXKQPGr420FVlR6ZtdXm3IWRLQ 3X0JongZKjqfQUjw4vaY3sLAD21llASmED0GuxjYCVN9GyhgmH0ZPuUtJgyUz3FdNT LQLeS7+o+AGv41HMdIrO5lBxEg1YmMx1F9QgQNZQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Dhruv Deshpande , Takashi Iwai Subject: [PATCH 6.1 09/22] ALSA: hda/realtek: Support mute LED on HP Laptop 15s-du3xxx Date: Thu, 3 Apr 2025 16:20:04 +0100 Message-ID: <20250403151621.202404422@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250403151620.960551909@linuxfoundation.org> References: <20250403151620.960551909@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: Dhruv Deshpande commit 35ef1c79d2e09e9e5a66e28a66fe0df4368b0f3d upstream. The mute LED on this HP laptop uses ALC236 and requires a quirk to function. This patch enables the existing quirk for the device. Tested on my laptop and the LED behaviour works as intended. Cc: stable@vger.kernel.org Signed-off-by: Dhruv Deshpande Link: https://patch.msgid.link/20250317085621.45056-1-dhrv.d@proton.me Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- sound/pci/hda/patch_realtek.c | 1 + 1 file changed, 1 insertion(+) --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -9867,6 +9867,7 @@ static const struct snd_pci_quirk alc269 SND_PCI_QUIRK(0x103c, 0x8811, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1), SND_PCI_QUIRK(0x103c, 0x8812, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1), SND_PCI_QUIRK(0x103c, 0x881d, "HP 250 G8 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2), + SND_PCI_QUIRK(0x103c, 0x881e, "HP Laptop 15s-du3xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2), SND_PCI_QUIRK(0x103c, 0x8846, "HP EliteBook 850 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8847, "HP EliteBook x360 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x884b, "HP EliteBook 840 Aero G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),