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 F3BDE25B691; Tue, 11 Mar 2025 15:35:30 +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=1741707331; cv=none; b=opnABoj+K2Bdfwh1lCKJykIX0d2ipdSGLXbYAtlrwpvCcSGxfHMoP9E7F+OxHImwfCxFhNwQjL1jdHsPssuFDtKDcG9ukWmOFwsFcGP7CW6kEK1a8HoAu7D4jTOxQaIC8B1wi5gqSB0HUT+fUhMSV9GVs0DOtN9NkR8CGRMyj8c= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741707331; c=relaxed/simple; bh=dQ9bsNlgG29LW7M8IMstIqmCpB7Kn25akXtmsizGoGk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=grtSoWwQiufrlIKs+ioIowSMDq21VeuGPctnl9mDTaoyvCy7Rdt0BQkbRcWKwbxxmjVn5X2LjWffF+aNrSXMgr+9Ve4YRqYcA0KVPW56pHr/PJ1R4DvB64MhtK4qHIF0EHws3yBqF2UPTX50wA8eiR44mSYt5XZY5pPjFxWf2XI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=cJ52utA7; 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="cJ52utA7" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7CAF4C4CEE9; Tue, 11 Mar 2025 15:35:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1741707330; bh=dQ9bsNlgG29LW7M8IMstIqmCpB7Kn25akXtmsizGoGk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=cJ52utA7FINEEdxEND+XsSSHVQ+aiHEnTlyik7mHHvit8r+p6sLIcnTqh/cBMk0R1 KGQVXewg6viE3d/YpHCOtOr7Zi1TxVsJXgdAPp0i/u/VsuccqQr5PEVKLdtNR5sYsj 7mlxLVYj6TqgvItzfZRtCoudcP1jKyax5vcJcAvE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, John Veness , Takashi Iwai Subject: [PATCH 5.10 345/462] ALSA: hda/conexant: Add quirk for HP ProBook 450 G4 mute LED Date: Tue, 11 Mar 2025 16:00:11 +0100 Message-ID: <20250311145811.991793094@linuxfoundation.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250311145758.343076290@linuxfoundation.org> References: <20250311145758.343076290@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 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: John Veness commit 6d1f86610f23b0bc334d6506a186f21a98f51392 upstream. Allows the LED on the dedicated mute button on the HP ProBook 450 G4 laptop to change colour correctly. Signed-off-by: John Veness Cc: Link: https://patch.msgid.link/2fb55d48-6991-4a42-b591-4c78f2fad8d7@pelago.org.uk Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- sound/pci/hda/patch_conexant.c | 1 + 1 file changed, 1 insertion(+) --- a/sound/pci/hda/patch_conexant.c +++ b/sound/pci/hda/patch_conexant.c @@ -1025,6 +1025,7 @@ static const struct snd_pci_quirk cxt506 SND_PCI_QUIRK(0x103c, 0x814f, "HP ZBook 15u G3", CXT_FIXUP_MUTE_LED_GPIO), SND_PCI_QUIRK(0x103c, 0x8174, "HP Spectre x360", CXT_FIXUP_HP_SPECTRE), SND_PCI_QUIRK(0x103c, 0x822e, "HP ProBook 440 G4", CXT_FIXUP_MUTE_LED_GPIO), + SND_PCI_QUIRK(0x103c, 0x8231, "HP ProBook 450 G4", CXT_FIXUP_MUTE_LED_GPIO), SND_PCI_QUIRK(0x103c, 0x828c, "HP EliteBook 840 G4", CXT_FIXUP_HP_DOCK), SND_PCI_QUIRK(0x103c, 0x8299, "HP 800 G3 SFF", CXT_FIXUP_HP_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x103c, 0x829a, "HP 800 G3 DM", CXT_FIXUP_HP_MIC_NO_PRESENCE),