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 6955B84A35; Mon, 24 Feb 2025 14:53:11 +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=1740408792; cv=none; b=t2SdQ0fJiTz7oVen2Tg8BVNA3yTvxKqqaxZAXjQBpPjFcVronqTMlC/OFoJX7qfFc/+QcOweKFeZrQtu/7MMC6s9OGSrHANadg35eNQtwlyTuv3Emfwn6wP0vrXsJA8OO4zFAgIpcZY1ML8/AzXttfGAl3wG7VMIK2ID6tyC8lQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740408792; c=relaxed/simple; bh=bPvtwSg8sXzswljzj32CaUiC19r0+EkZ7KeuNsynQ0E=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=rZxCC4cA+9hKw4dQFvR+Lv416FasVQKpRE0mN7tnZZ3KsMrB7b3RqUXggh9kXULQUKOLsCqISwZ0FXLA/BV9ZmO46W+Hi6+lXlXjQyaGZVmHDdXbXiUFVuaQO5qorRO4fR/oQY9eRdKrRnS+SawxWc54KETly37gsjGLRu6kzIc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=whg4b2im; 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="whg4b2im" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 60D78C4CED6; Mon, 24 Feb 2025 14:53:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1740408791; bh=bPvtwSg8sXzswljzj32CaUiC19r0+EkZ7KeuNsynQ0E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=whg4b2imCNMq8sqhOhGKPHcnim1bi7AK/+exCNP8In11817+/0upxklfgccUXYZXH k08eYxktwOwtySSWUDGv9ip7lNL7ctObqYoFICTM1bj4N5bAYWkHYhmMjxFiHceQSx adG1vVx/0aaqAgSRNWbtgH8saH9Lz+MPpf4WZ7h4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, John Veness , Takashi Iwai Subject: [PATCH 6.12 132/154] ALSA: hda/conexant: Add quirk for HP ProBook 450 G4 mute LED Date: Mon, 24 Feb 2025 15:35:31 +0100 Message-ID: <20250224142612.220390355@linuxfoundation.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250224142607.058226288@linuxfoundation.org> References: <20250224142607.058226288@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: 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 @@ -1080,6 +1080,7 @@ static const struct hda_quirk cxt5066_fi 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),