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 1ED1E14F9DA; Tue, 20 Feb 2024 21:01:41 +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=1708462901; cv=none; b=uj2brcLXVBYT/3uz8yiL7N9NRpasNzKgmExUHxd3OHkvkQBh/xNbyJ7M8K80Mf343xFopKpJQb5sGIxm6FySbE4b9G1oQ51z42xoJuPlmAAASVd//qm8PKXqrYY/gEFBhXMk2bwAOYrM9R656a6DaUltgikI3AhOB00XvgCj8nU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708462901; c=relaxed/simple; bh=jrEsiwau+R35QIMmGhpeBrChanvjI+FvD5NUuGCgRho=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=R6skmQRjkcWSfe/J6OJjbf+lRl+GDVbdDuoLgm7Wksw30cuyXCamYmFRZXM34U+dIjm2vT4aPsXDEHmJK/mcREK1L/PfiRcay6BZekWJzFATp1lUy9wucELWTaf/eIeXFn2xpH7ZiYQA4WX9HEFKh+CGzB/Z3J9+2uCWvAAUgDY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=pxAczmA0; 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="pxAczmA0" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 93AC7C433F1; Tue, 20 Feb 2024 21:01:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1708462901; bh=jrEsiwau+R35QIMmGhpeBrChanvjI+FvD5NUuGCgRho=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=pxAczmA0Y9kAwn02cBV1FNJGr/tfv6OopFR7TlQDscfOurEHl/vB1zLAqnPQX0h+Q SKOW0YSI6LmoVAfY+Qxl/9z4ZSaH2vUB8sZF/annhSssY/g0NlRyIM7/ZR4O1ZzPmo xsU1hBCoEHFzDXJiWOIx3A60wMTmqEtV6/DjuVik= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Luka Guzenko , Takashi Iwai Subject: [PATCH 6.1 043/197] ALSA: hda/realtek: Enable Mute LED on HP Laptop 14-fq0xxx Date: Tue, 20 Feb 2024 21:50:02 +0100 Message-ID: <20240220204842.369824296@linuxfoundation.org> X-Mailer: git-send-email 2.43.2 In-Reply-To: <20240220204841.073267068@linuxfoundation.org> References: <20240220204841.073267068@linuxfoundation.org> User-Agent: quilt/0.67 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: Luka Guzenko commit f0d78972f27dc1d1d51fbace2713ad3cdc60a877 upstream. This HP Laptop uses ALC236 codec with COEF 0x07 controlling the mute LED. Enable existing quirk for this device. Signed-off-by: Luka Guzenko Cc: Link: https://lore.kernel.org/r/20240128155704.2333812-1-l.guzenko@web.de 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 @@ -9618,6 +9618,7 @@ static const struct snd_pci_quirk alc269 SND_PCI_QUIRK(0x103c, 0x8786, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED), SND_PCI_QUIRK(0x103c, 0x8787, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED), SND_PCI_QUIRK(0x103c, 0x8788, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED), + SND_PCI_QUIRK(0x103c, 0x87b7, "HP Laptop 14-fq0xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2), SND_PCI_QUIRK(0x103c, 0x87c8, "HP", ALC287_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x87e5, "HP ProBook 440 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x87e7, "HP ProBook 450 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),