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 314352E765E; Mon, 22 Sep 2025 19:45:32 +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=1758570332; cv=none; b=gZVKimHP6qntkoNCq81xIkhASNI5QuTLBE2UBdsS/fidyAexcioACETuE7GIYGv8LaKPwsgeLYC6G3W37+XrFFdOfSqLk73OADRchp/foaw5fSajjJCSL2RD33hHkz8zxuHyy1Sk+GbIlUKbI15/MSL0afyk5vYuN97oh+zwEeU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758570332; c=relaxed/simple; bh=ql8bxpdWGIWop5zFV/hnqC3T3pthrYZPyYidyxyrWd8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=FRMuXyhKolArPzwhZfJ4Z8uQgPFzZntab4FEAtayToVAzHk/fB+SKMLGHDlvKkoxWd3iAVVQm1Msi+SR6VenNI4SMXflVMCVVFdCBSHtSXJxpBiwZVeVUFsDId0eu/D+tegDtZl+5RGQHY/xrEQ+7cLZOqJLeRK3YCFyiBwMRWg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=YZibbkSI; 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="YZibbkSI" Received: by smtp.kernel.org (Postfix) with ESMTPSA id BF469C4CEF0; Mon, 22 Sep 2025 19:45:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1758570332; bh=ql8bxpdWGIWop5zFV/hnqC3T3pthrYZPyYidyxyrWd8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YZibbkSI1hALzRxPaWFH7jHvuKMY8uuaeqww+Z4/bUufcMd35rCG72HpoGl7V/G5s CCAnBFRgzNS2iq52mw9n6kJ+9TstXQQe+tHH13gJH9e6weTq964MN0VpaCm7xlTvv8 V+RtuVqDlU8EjyXvUtIVxkxJ5DecedEiU2XzFqMc= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Praful Adiga , Takashi Iwai Subject: [PATCH 6.16 107/149] ALSA: hda/realtek: Fix mute led for HP Laptop 15-dw4xx Date: Mon, 22 Sep 2025 21:30:07 +0200 Message-ID: <20250922192415.578869467@linuxfoundation.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250922192412.885919229@linuxfoundation.org> References: <20250922192412.885919229@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.16-stable review patch. If anyone has any objections, please let me know. ------------------ From: Praful Adiga commit d33c3471047fc54966621d19329e6a23ebc8ec50 upstream. This laptop uses the ALC236 codec with COEF 0x7 and idx 1 to control the mute LED. Enable the existing quirk for this device. Signed-off-by: Praful Adiga Cc: 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 @@ -10752,6 +10752,7 @@ static const struct hda_quirk alc269_fix SND_PCI_QUIRK(0x103c, 0x8992, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2), SND_PCI_QUIRK(0x103c, 0x8994, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8995, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2), + SND_PCI_QUIRK(0x103c, 0x89a0, "HP Laptop 15-dw4xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2), SND_PCI_QUIRK(0x103c, 0x89a4, "HP ProBook 440 G9", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x89a6, "HP ProBook 450 G9", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x89aa, "HP EliteBook 630 G9", ALC236_FIXUP_HP_GPIO_LED),