From: Corbin Simpson <[EMAIL PROTECTED]> Add USB IDs for the drumkit from Rock Band and the guitar from Guitar Hero 2 to the joystick driver for Xbox 360 controllers (drivers/input/joystick/xpad.c).
Signed-off-by: Corbin Simpson <[EMAIL PROTECTED]> --- These are both wired USB devices for the Xbox 360. Both work adequately as joysticks, although the Rock Band kit is somewhat slow; maybe it could be sped up? Should apply cleanly to 2.6.23. This is my first patch; am I doin' it right? ~ C. --- drivers/input/joystick/xpad.c.old 2007-12-25 10:38:08.000000000 -0800 +++ drivers/input/joystick/xpad.c 2007-12-28 00:03:00.000000000 -0800 @@ -9,6 +9,7 @@ * 2005 Dominic Cerquetti <[EMAIL PROTECTED]> * 2006 Adam Buchbinder <[EMAIL PROTECTED]> * 2007 Jan Kratochvil <[EMAIL PROTECTED]> + * 2007 Corbin Simpson <[EMAIL PROTECTED]> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -134,8 +135,10 @@ static const struct xpad_device { { 0x0f30, 0x8888, "BigBen XBMiniPad Controller", MAP_DPAD_TO_AXES, XTYPE_XBOX }, { 0x102c, 0xff0c, "Joytech Wireless Advanced Controller", MAP_DPAD_TO_AXES, XTYPE_XBOX }, { 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX }, + { 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 }, { 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX }, { 0x045e, 0x028e, "Microsoft X-Box 360 pad", MAP_DPAD_TO_AXES, XTYPE_XBOX360 }, + { 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 }, { 0xffff, 0xffff, "Chinese-made Xbox Controller", MAP_DPAD_TO_AXES, XTYPE_XBOX }, { 0x0000, 0x0000, "Generic X-Box pad", MAP_DPAD_UNKNOWN, XTYPE_XBOX } }; @@ -178,6 +181,8 @@ static const signed short xpad_abs_pad[] static struct usb_device_id xpad_table [] = { { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */ { USB_DEVICE_INTERFACE_PROTOCOL(0x045e, 0x028e, 1) }, /* X-Box 360 controller */ + { USB_DEVICE_INTERFACE_PROTOCOL(0x1430, 0x4748, 1) }, /* Guitar Hero X-plorer */ + { USB_DEVICE_INTERFACE_PROTOCOL(0x1bad, 0x0003, 1) }, /* Rock Band Drums */ { } }; -- Only fools are easily impressed by what is only barely beyond their reach. ~ Unknown Corbin Simpson <[EMAIL PROTECTED]> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/