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 EC581FBE7 for ; Mon, 15 May 2023 17:20:39 +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 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 } },