Skip to content

Commit 9d9eab0

Browse files
sanjay900gregkh
authored andcommitted
Input: xpad - add support for CRKD Guitars
commit 806ec7b upstream. Add support for various CRKD Guitar Controllers. Signed-off-by: Sanjay Govind <sanjay.govind9@gmail.com> Link: https://patch.msgid.link/20251129073720.2750-2-sanjay.govind9@gmail.com Cc: stable@vger.kernel.org Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent cae029e commit 9d9eab0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

drivers/input/joystick/xpad.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,8 @@ static const struct xpad_device {
133133
} xpad_device[] = {
134134
/* Please keep this list sorted by vendor and product ID. */
135135
{ 0x0079, 0x18d4, "GPD Win 2 X-Box Controller", 0, XTYPE_XBOX360 },
136+
{ 0x0351, 0x1000, "CRKD LP Blueberry Burst Pro Edition (Xbox)", 0, XTYPE_XBOX360 },
137+
{ 0x0351, 0x2000, "CRKD LP Black Tribal Edition (Xbox) ", 0, XTYPE_XBOX360 },
136138
{ 0x03eb, 0xff01, "Wooting One (Legacy)", 0, XTYPE_XBOX360 },
137139
{ 0x03eb, 0xff02, "Wooting Two (Legacy)", 0, XTYPE_XBOX360 },
138140
{ 0x03f0, 0x038D, "HyperX Clutch", 0, XTYPE_XBOX360 }, /* wired */
@@ -420,6 +422,7 @@ static const struct xpad_device {
420422
{ 0x3285, 0x0663, "Nacon Evol-X", 0, XTYPE_XBOXONE },
421423
{ 0x3537, 0x1004, "GameSir T4 Kaleid", 0, XTYPE_XBOX360 },
422424
{ 0x3537, 0x1010, "GameSir G7 SE", 0, XTYPE_XBOXONE },
425+
{ 0x3651, 0x1000, "CRKD SG", 0, XTYPE_XBOX360 },
423426
{ 0x366c, 0x0005, "ByoWave Proteus Controller", MAP_SHARE_BUTTON, XTYPE_XBOXONE, FLAG_DELAY_INIT },
424427
{ 0x3767, 0x0101, "Fanatec Speedster 3 Forceshock Wheel", 0, XTYPE_XBOX },
425428
{ 0x37d7, 0x2501, "Flydigi Apex 5", 0, XTYPE_XBOX360 },
@@ -518,6 +521,7 @@ static const struct usb_device_id xpad_table[] = {
518521
*/
519522
{ USB_INTERFACE_INFO('X', 'B', 0) }, /* Xbox USB-IF not-approved class */
520523
XPAD_XBOX360_VENDOR(0x0079), /* GPD Win 2 controller */
524+
XPAD_XBOX360_VENDOR(0x0351), /* CRKD Controllers */
521525
XPAD_XBOX360_VENDOR(0x03eb), /* Wooting Keyboards (Legacy) */
522526
XPAD_XBOX360_VENDOR(0x03f0), /* HP HyperX Xbox 360 controllers */
523527
XPAD_XBOXONE_VENDOR(0x03f0), /* HP HyperX Xbox One controllers */
@@ -578,6 +582,7 @@ static const struct usb_device_id xpad_table[] = {
578582
XPAD_XBOXONE_VENDOR(0x3285), /* Nacon Evol-X */
579583
XPAD_XBOX360_VENDOR(0x3537), /* GameSir Controllers */
580584
XPAD_XBOXONE_VENDOR(0x3537), /* GameSir Controllers */
585+
XPAD_XBOX360_VENDOR(0x3651), /* CRKD Controllers */
581586
XPAD_XBOXONE_VENDOR(0x366c), /* ByoWave controllers */
582587
XPAD_XBOX360_VENDOR(0x37d7), /* Flydigi Controllers */
583588
XPAD_XBOX360_VENDOR(0x413d), /* Black Shark Green Ghost Controller */

0 commit comments

Comments
 (0)