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 635B317BB0C; Tue, 10 Sep 2024 10:41:08 +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=1725964868; cv=none; b=YndQ+aDgsC+1mE10zAduRaWAH2b3nmWE041ffmCvxCuqyQoWuwQQcpxgKq9gK+kxC+YEIMyZ+SGmNdI5Mv0NQtSqHwkleLOl1qLmrrifO5SJ3sjha3Xa4Y2PyKWCHwpOufAktOpkEq+IjvNhZ2UWA2OowyYo64keMiLdTI+Tsew= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1725964868; c=relaxed/simple; bh=Ths4npP8BqnYaq+UrIpbOi7tq7ITj+5I7ReM8zPwFsk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=P0gFm4DsuYtIzo2Zq/CIgVfN2up2rZ0pRr2lf7iQalIHsXSZ6NLEGI9AqXEK8btKHYwjg84M2qzqld3s8axBL1hggwxiGHMi2yYUPhhcVsuVDvq3ITi+EuROOk513ha4ul4PCr8fduR5P/QghTSZjNsHSo61q/d+ZdUlouKSzno= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=NS5b5cQQ; 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="NS5b5cQQ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DCB7CC4CEC3; Tue, 10 Sep 2024 10:41:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1725964868; bh=Ths4npP8BqnYaq+UrIpbOi7tq7ITj+5I7ReM8zPwFsk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=NS5b5cQQZ8YZ4lSbG85+EDoofA051Jvplka67lSB73aQX5y1KHPvgiGnycGmx3Rpq ZpwKGQGjBGJkrcsFy4YvXW2vrSjV9u/t+8SkQZdF8lOlCeLzP8QsOzMf/EpubKRefv 7nqf0U80mlG+J+/wJGV9z2GtndES4sBDdSBeU6Jo= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Maximilien Perreault , Takashi Iwai Subject: [PATCH 5.10 058/186] ALSA: hda/realtek: Support mute LED on HP Laptop 14-dq2xxx Date: Tue, 10 Sep 2024 11:32:33 +0200 Message-ID: <20240910092556.880374098@linuxfoundation.org> X-Mailer: git-send-email 2.46.0 In-Reply-To: <20240910092554.645718780@linuxfoundation.org> References: <20240910092554.645718780@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 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Maximilien Perreault commit 47a9e8dbb8d4713a9aac7cc6ce3c82dcc94217d8 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. Signed-off-by: Maximilien Perreault Cc: Link: https://patch.msgid.link/20240904031013.21220-1-maximilienperreault@gmail.com 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 @@ -9112,6 +9112,7 @@ static const struct snd_pci_quirk alc269 SND_PCI_QUIRK(0x103c, 0x87f5, "HP", ALC287_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x87f6, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP), SND_PCI_QUIRK(0x103c, 0x87f7, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP), + SND_PCI_QUIRK(0x103c, 0x87fd, "HP Laptop 14-dq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2), SND_PCI_QUIRK(0x103c, 0x87fe, "HP Laptop 15s-fq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2), SND_PCI_QUIRK(0x103c, 0x8805, "HP ProBook 650 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x880d, "HP EliteBook 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),