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 ADBFB19DFAB; Thu, 30 Jan 2025 14:16:26 +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=1738246586; cv=none; b=G8j/YIpS4S7IcatI7o6yDhlW27xdIHhpsDOMvF84WyHW4iqQVKWnEtPNUm8FKGMH9ZI7o2X53v0w9Ykv2KKwZPpSgAaLnM3IGdF8XYdxuKGSRFhpwN5IKaMaeIfS+5HsxHq/z/t/R9lKOGEYys9NB8sO7137WTZKLDjjT5agVw8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738246586; c=relaxed/simple; bh=4HfxylNi9QQ3lJZYEXUIPeKCQmXV13nTfPZ5K6p1Szw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=e74dLlVSFzDSCxC6vsEd7YymtsavEN+RfNqIR2tozJfG1okw3pQXdBI472s2DRDtGyWz4vRH95HBqIS4n5efVK29aq0izGihAXCk03uEGGMOvJtWL24q0cMsOBI7zKMgrWRSFHP2ruYbkqRHSd5ziCJc78GH6VsBdf4bKjvbJy4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=JDeRXAST; 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="JDeRXAST" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 36E16C4CEE0; Thu, 30 Jan 2025 14:16:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1738246586; bh=4HfxylNi9QQ3lJZYEXUIPeKCQmXV13nTfPZ5K6p1Szw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=JDeRXASToEu6otCxnzoKtjBZXfwV1/zIigwDM7bt2oZ14GPy+tTrY913oR8ylRBTp mvJUsmDPzetKfH42yhvoF9t6+pfLFNYAhmloa4qsUBGfnE9lWwFn4pk9EcEi5ww3fj C4+JZN4oYwOY+IEKKO/ymyx0nHBX+Trt7Gv9Aslc= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Matheos Mattsson , Pavel Rojtberg , Dmitry Torokhov Subject: [PATCH 6.6 42/43] Input: xpad - add support for Nacon Evol-X Xbox One Controller Date: Thu, 30 Jan 2025 14:59:49 +0100 Message-ID: <20250130133500.586002697@linuxfoundation.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250130133458.903274626@linuxfoundation.org> References: <20250130133458.903274626@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.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Matheos Mattsson commit 3a6e5ed2372bcb2a3c554fda32419efd91ff9b0c upstream. Add Nacon Evol-X Xbox One to the list of supported devices. Signed-off-by: Matheos Mattsson Signed-off-by: Pavel Rojtberg Link: https://lore.kernel.org/r/20250107192830.414709-9-rojtberg@gmail.com Cc: stable@vger.kernel.org Signed-off-by: Dmitry Torokhov Signed-off-by: Greg Kroah-Hartman --- drivers/input/joystick/xpad.c | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/input/joystick/xpad.c +++ b/drivers/input/joystick/xpad.c @@ -385,6 +385,7 @@ static const struct xpad_device { { 0x31e3, 0x1310, "Wooting 60HE (ARM)", 0, XTYPE_XBOX360 }, { 0x3285, 0x0607, "Nacon GC-100", 0, XTYPE_XBOX360 }, { 0x3285, 0x0646, "Nacon Pro Compact", 0, XTYPE_XBOXONE }, + { 0x3285, 0x0663, "Nacon Evol-X", 0, XTYPE_XBOXONE }, { 0x3537, 0x1004, "GameSir T4 Kaleid", 0, XTYPE_XBOX360 }, { 0x3767, 0x0101, "Fanatec Speedster 3 Forceshock Wheel", 0, XTYPE_XBOX }, { 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX }, @@ -532,6 +533,7 @@ static const struct usb_device_id xpad_t XPAD_XBOX360_VENDOR(0x2f24), /* GameSir controllers */ XPAD_XBOX360_VENDOR(0x31e3), /* Wooting Keyboards */ XPAD_XBOX360_VENDOR(0x3285), /* Nacon GC-100 */ + XPAD_XBOXONE_VENDOR(0x3285), /* Nacon Evol-X */ XPAD_XBOX360_VENDOR(0x3537), /* GameSir Controllers */ XPAD_XBOXONE_VENDOR(0x3537), /* GameSir Controllers */ { }