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 D8D57346FCF; Thu, 12 Mar 2026 20:20:52 +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=1773346852; cv=none; b=S8dtU5JHm3+P+pkw7ctaSBcKq947BLevUm+VPfbR9EDD6D7sDEWR3OUU0o9LJZSX5l+QwEKPuFP8nx+6h2eBkq+Fvwr04dpxflnzi50D6wt4+zmK2rFI3o7CrnQ3qBbHog8EOEZmWq7XA6kgfzDcfJTxU7GwpuzJd57umX/guYA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773346852; c=relaxed/simple; bh=uQBgpCbHg8T+Il26Uj4zAPrCPxi7cHogrmFgnspGlp0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=Nc2qKrBAoqE8lwHfjhuMI9WeZIh5q6T0SEMtmSkc+eFIww6lK98mv3+La/7c5D2UjlQRwhqwM0mtITNFPADVBv9G7XN3l9OK4w5uD9jCu5nvLfGNHQbE15nree+5d5YfEjUCovdpp4/J3JSmsdY2HGlknw4seI/6KMeA91tYNUE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=HIMLkj8k; 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="HIMLkj8k" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 66741C4CEF7; Thu, 12 Mar 2026 20:20:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1773346852; bh=uQBgpCbHg8T+Il26Uj4zAPrCPxi7cHogrmFgnspGlp0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HIMLkj8kR4kv9P+n9fybPuV8+Nd4x8YWkKRLuxL9PeH+UmF6R/NCN1eTtKeUWQyBZ iEwDSLq0r6BHkEZ3LtLh5mO/814FE6st8CMADc0cdzxiK8ttnCn1MWuKNrtZvPNWcj zkzTAnqfCZQWhE2wERzHXzqgCZyPhNhkZLHCqPJM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Olexa Bilaniuk , Kurt Borja , =?UTF-8?q?Pali=20Roh=C3=A1r?= , =?UTF-8?q?Ilpo=20J=C3=A4rvinen?= Subject: [PATCH 6.12 142/265] platform/x86: dell-wmi: Add audio/mic mute key codes Date: Thu, 12 Mar 2026 21:08:49 +0100 Message-ID: <20260312201023.386297535@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260312201018.128816016@linuxfoundation.org> References: <20260312201018.128816016@linuxfoundation.org> User-Agent: quilt/0.69 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-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Kurt Borja commit 26a7601471f62b95d56a81c3a8ccb551b5a6630f upstream. Add audio/mic mute key codes found in Alienware m18 r1 AMD. Cc: stable@vger.kernel.org Tested-by: Olexa Bilaniuk Suggested-by: Olexa Bilaniuk Signed-off-by: Kurt Borja Acked-by: Pali Rohár Link: https://patch.msgid.link/20260207-mute-keys-v2-1-c55e5471c9c1@gmail.com Reviewed-by: Ilpo Järvinen Signed-off-by: Ilpo Järvinen Signed-off-by: Greg Kroah-Hartman --- drivers/platform/x86/dell/dell-wmi-base.c | 6 ++++++ 1 file changed, 6 insertions(+) --- a/drivers/platform/x86/dell/dell-wmi-base.c +++ b/drivers/platform/x86/dell/dell-wmi-base.c @@ -80,6 +80,12 @@ static const struct dmi_system_id dell_w static const struct key_entry dell_wmi_keymap_type_0000[] = { { KE_IGNORE, 0x003a, { KEY_CAPSLOCK } }, + /* Audio mute toggle */ + { KE_KEY, 0x0109, { KEY_MUTE } }, + + /* Mic mute toggle */ + { KE_KEY, 0x0150, { KEY_MICMUTE } }, + /* Meta key lock */ { KE_IGNORE, 0xe000, { KEY_RIGHTMETA } },