From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id EF81CC7EE23 for ; Mon, 15 May 2023 17:23:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S243860AbjEORXJ (ORCPT ); Mon, 15 May 2023 13:23:09 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40148 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S243964AbjEORWs (ORCPT ); Mon, 15 May 2023 13:22:48 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 84B3B11DB9 for ; Mon, 15 May 2023 10:20:56 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 3F8B562C56 for ; Mon, 15 May 2023 17:20:40 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3BC81C433D2; Mon, 15 May 2023 17:20:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1684171239; bh=IbIuFBY39dut/B58uONInkPlM9KkZKRci1tFVb1Rc3A=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=n9VnK1tgcGeGsPwSVcDJPfqslZREdC4/+JwDb773EgcOv49cvHFhENvQMjFtbWZSA wG/0dccZhdH5cio2fX0ebQaMA+0e7/XkEQqvgkKv6s+Sa2xdi4tQYxcNUDKpnLqnLB UuF8BegVW7GSezfXcZ/JAbCn3rCFhV2rR27VHcMk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Fae , Hans de Goede Subject: [PATCH 6.2 146/242] platform/x86: hp-wmi: add micmute to hp_wmi_keymap struct Date: Mon, 15 May 2023 18:27:52 +0200 Message-Id: <20230515161726.277902835@linuxfoundation.org> X-Mailer: git-send-email 2.40.1 In-Reply-To: <20230515161721.802179972@linuxfoundation.org> References: <20230515161721.802179972@linuxfoundation.org> User-Agent: quilt/0.67 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Fae commit decab2825c3ef9b154c6f76bce40872ffb41c36f upstream. Fixes micmute key of HP Envy X360 ey0xxx. Signed-off-by: Fae Link: https://lore.kernel.org/r/20230425063644.11828-1-faenkhauser@gmail.com Cc: stable@vger.kernel.org Reviewed-by: Hans de Goede Signed-off-by: Hans de Goede Signed-off-by: Greg Kroah-Hartman --- drivers/platform/x86/hp/hp-wmi.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/platform/x86/hp/hp-wmi.c +++ b/drivers/platform/x86/hp/hp-wmi.c @@ -211,6 +211,7 @@ struct bios_rfkill2_state { static const struct key_entry hp_wmi_keymap[] = { { KE_KEY, 0x02, { KEY_BRIGHTNESSUP } }, { KE_KEY, 0x03, { KEY_BRIGHTNESSDOWN } }, + { KE_KEY, 0x270, { KEY_MICMUTE } }, { KE_KEY, 0x20e6, { KEY_PROG1 } }, { KE_KEY, 0x20e8, { KEY_MEDIA } }, { KE_KEY, 0x2142, { KEY_MEDIA } },