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 6F5AD2E285C; Mon, 22 Sep 2025 19:39:43 +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=1758569983; cv=none; b=lt6+z+JIIjU6D3oymFcDoL/DwEdBv5vt1aInXopyWBvqxMEMHkRYQxE41gwD0LYtyNcKB9cFRaE3StqyhHh1jCwQqaKsF9CW77N1UAOgYlOVOIdedStV+PfjquTB2qx63NZRLxhQj9zKLHGSGKNEo+WlXA3c2z7k6hdjcNaqJvU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758569983; c=relaxed/simple; bh=QxKishtbmT7JhsDQSNIE5N9EYo1wKGi8vA3kbKpXfTY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=eVfocDj2UtykUaTEVh9J2fB+hnZM0siXipBs9MSVO5OGlP2Yz8tiboBNyUyjOeVVbQPhNkYroNF0L1XrbcmOr9eUBDvt8fxu3FvNd2+FWSi22utvAyY3MS/gyI1YgnEfuF5rycj3paOP4kYiYrl4d5yRNOlYJKSAp7gSES5UL+o= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=2DIaXFBc; 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="2DIaXFBc" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 06D29C4CEF0; Mon, 22 Sep 2025 19:39:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1758569983; bh=QxKishtbmT7JhsDQSNIE5N9EYo1wKGi8vA3kbKpXfTY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=2DIaXFBcRQ7QBOUH/ZUbjkNO8TOCfBU3nKmA8WhlTBB7bkWKLZe9nebg2IFISIepM ODTS55ByGklgpH6rBEsJ0M8YwTrCksgDgc4ACeGUuFxUaQGY6zvfgAdGcYE5y3ToXG j9nMt96PKofqe/7uOxDeDpWabdCHW8a+6t4aJ8ko= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Praful Adiga , Takashi Iwai Subject: [PATCH 6.12 065/105] ALSA: hda/realtek: Fix mute led for HP Laptop 15-dw4xx Date: Mon, 22 Sep 2025 21:29:48 +0200 Message-ID: <20250922192410.614793144@linuxfoundation.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250922192408.913556629@linuxfoundation.org> References: <20250922192408.913556629@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-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 @@ -10666,6 +10666,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),