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 059E9281377; Thu, 13 Feb 2025 14:36:00 +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=1739457360; cv=none; b=klSJi7N5mE13QxoCuDqC36baDDUf/8DriF5VgCHTURNB3CmJRS888uu0DGh9rwmfzdmxCvaYycPoLj4pDCxpskfAzaK7y17g+0OGNUg0H2B4IxkWk38iTPIq5V361cRwlCsZGz1rYnlK8TwJaMcniEPDNOb0SAlJew01XUbqlAs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739457360; c=relaxed/simple; bh=OK+lGGDBXJ0M9rOQJ2+0IGR0yX9WQ5pMAETLtXeIibI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=SunEZAGqbVbjSFumH3BlU9/YilAz9OF+e64iolk57zjoNk2L1MJIeABZagEQU7iIR1cMZsULPKqU149a6Ucg+PqAI/dPupA1+xdhj2nXwKICNFqRu/PWDT0nu50OKGkokD/yR3sFUyGWY+AzE+zUomYexo9uA6ga9HlfjF2z0xk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=fDGPLxeQ; 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="fDGPLxeQ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 76DC1C4CEE4; Thu, 13 Feb 2025 14:35:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1739457359; bh=OK+lGGDBXJ0M9rOQJ2+0IGR0yX9WQ5pMAETLtXeIibI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=fDGPLxeQUKosuUkUZA+pib9QZ5TElPl/P9S8WkeqfZ0z4Mh5NHNsnPUrZ1a0cDVps EAZEhAIMRAZ0bAqR+WQZfI6GmyYspwerXBa8C+yQSH5w24XH/1OmXP4o25qTwlMJQo KLojomRmRYmkxWq2vSTRcBtsBd5ykMdnj4wIAc/4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Illia Ostapyshyn , Dmitry Torokhov , =?UTF-8?q?Ilpo=20J=C3=A4rvinen?= , Sasha Levin Subject: [PATCH 6.12 086/422] Input: allocate keycode for phone linking Date: Thu, 13 Feb 2025 15:23:55 +0100 Message-ID: <20250213142439.872840429@linuxfoundation.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250213142436.408121546@linuxfoundation.org> References: <20250213142436.408121546@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore 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 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Illia Ostapyshyn [ Upstream commit 1bebc7869c99d466f819dd2cffaef0edf7d7a035 ] The F11 key on the new Lenovo Thinkpad T14 Gen 5, T16 Gen 3, and P14s Gen 5 laptops includes a symbol showing a smartphone and a laptop chained together. According to the user manual, it starts the Microsoft Phone Link software used to connect to Android/iOS devices and relay messages/calls or sync data. As there are no suitable keycodes for this action, introduce a new one. Signed-off-by: Illia Ostapyshyn Acked-by: Dmitry Torokhov Link: https://lore.kernel.org/r/20241114173930.44983-2-illia@yshyn.com Reviewed-by: Ilpo Järvinen Signed-off-by: Ilpo Järvinen Signed-off-by: Sasha Levin --- include/uapi/linux/input-event-codes.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/uapi/linux/input-event-codes.h b/include/uapi/linux/input-event-codes.h index a4206723f5033..5a199f3d4a26a 100644 --- a/include/uapi/linux/input-event-codes.h +++ b/include/uapi/linux/input-event-codes.h @@ -519,6 +519,7 @@ #define KEY_NOTIFICATION_CENTER 0x1bc /* Show/hide the notification center */ #define KEY_PICKUP_PHONE 0x1bd /* Answer incoming call */ #define KEY_HANGUP_PHONE 0x1be /* Decline incoming call */ +#define KEY_LINK_PHONE 0x1bf /* AL Phone Syncing */ #define KEY_DEL_EOL 0x1c0 #define KEY_DEL_EOS 0x1c1 -- 2.39.5