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 90126BE7F; Thu, 18 Jan 2024 11:01:58 +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=1705575718; cv=none; b=YuAEddO0NevrUANfKYXkiTQR82oy/sGIgN1WCr5lcO8OVWgiv7tlmQmGhXw79FEAoWMzs9PoZAOXtKcdvxfTklAPwXlxjDgQ2So8OnPbj0KDjtWLDpHu5dVrUX7WxTWpDSSaG2L0fN1fNfOSjgB3JgyujLcesQQDCSmSDI2c69s= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705575718; c=relaxed/simple; bh=DsgV56p0vf8jg5c8kuC733aKH2iZ8GAgO3iEj7z0n3I=; h=Received:DKIM-Signature:From:To:Cc:Subject:Date:Message-ID: X-Mailer:In-Reply-To:References:User-Agent:X-stable: X-Patchwork-Hint:MIME-Version:Content-Transfer-Encoding; b=aTekAhFpADAnDdK9Ilk0pzJR6ECIAjftxJec1SmCfquJRK8E7LqZ9XVRTkCsWaq8o85YyKC87TamqZuBnn7tTw7XCSjAeIe0MEITgGoorhG0KKukZp4GFLu0CzBNEucSQ7XYhxxOkiREhTiNFTclvyNRxEjuQAEnwWxD+MN6Mak= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=e2TpmcW0; 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="e2TpmcW0" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 13953C433C7; Thu, 18 Jan 2024 11:01:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1705575718; bh=DsgV56p0vf8jg5c8kuC733aKH2iZ8GAgO3iEj7z0n3I=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=e2TpmcW0gQVMS4ULRR6cKcUUPnXgCMRmMRVCUFy5HVIxaXIFjXKIYCfKfGpVpQoui TFCqKsU3w/oRbHnzggskfxIiWVgBkbTflIjsn5OYbul4hsl9t258uDHjX4y/HytNBr vdVkpVdWUKeKm0uFnY8VwuQuX04D7wP78V3BWNmo= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Luca Weiss , Dmitry Torokhov , Sasha Levin Subject: [PATCH 6.1 063/100] Input: xpad - add Razer Wolverine V2 support Date: Thu, 18 Jan 2024 11:49:11 +0100 Message-ID: <20240118104313.674160863@linuxfoundation.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240118104310.892180084@linuxfoundation.org> References: <20240118104310.892180084@linuxfoundation.org> User-Agent: quilt/0.67 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-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Luca Weiss [ Upstream commit c3d1610345b79cbe29ef6ca04a4780eff0d360c7 ] Add the VID and PID of Razer Wolverine V2 to xpad_device. Signed-off-by: Luca Weiss Link: https://lore.kernel.org/r/20231125-razer-wolverine-v2-v1-1-979fe9f9288e@z3ntu.xyz Signed-off-by: Dmitry Torokhov Signed-off-by: Sasha Levin --- drivers/input/joystick/xpad.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c index 8404286302b0..e8011d70d079 100644 --- a/drivers/input/joystick/xpad.c +++ b/drivers/input/joystick/xpad.c @@ -286,6 +286,7 @@ static const struct xpad_device { { 0x146b, 0x0604, "Bigben Interactive DAIJA Arcade Stick", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 }, { 0x1532, 0x0a00, "Razer Atrox Arcade Stick", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOXONE }, { 0x1532, 0x0a03, "Razer Wildcat", 0, XTYPE_XBOXONE }, + { 0x1532, 0x0a29, "Razer Wolverine V2", 0, XTYPE_XBOXONE }, { 0x15e4, 0x3f00, "Power A Mini Pro Elite", 0, XTYPE_XBOX360 }, { 0x15e4, 0x3f0a, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 }, { 0x15e4, 0x3f10, "Batarang Xbox 360 controller", 0, XTYPE_XBOX360 }, -- 2.43.0