hid-axff.c (d4d9781d1dd04ff134e3d43383dfa9991f7c54c6) | hid-axff.c (8f86a2c3cb90e8bb0733de2d2b0abbe7050bb536) |
---|---|
1/* 2 * Force feedback support for ACRUX game controllers 3 * 4 * From what I have gathered, these devices are mass produced in China 5 * by several vendors. They often share the same design as the original 6 * Xbox 360 controller. 7 * 8 * 1a34:0802 "ACRUX USB GAMEPAD 8116" --- 17 unchanged lines hidden (view full) --- 26 * along with this program; if not, write to the Free Software 27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 28 */ 29 30#include <linux/input.h> 31#include <linux/slab.h> 32#include <linux/usb.h> 33#include <linux/hid.h> | 1/* 2 * Force feedback support for ACRUX game controllers 3 * 4 * From what I have gathered, these devices are mass produced in China 5 * by several vendors. They often share the same design as the original 6 * Xbox 360 controller. 7 * 8 * 1a34:0802 "ACRUX USB GAMEPAD 8116" --- 17 unchanged lines hidden (view full) --- 26 * along with this program; if not, write to the Free Software 27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 28 */ 29 30#include <linux/input.h> 31#include <linux/slab.h> 32#include <linux/usb.h> 33#include <linux/hid.h> |
34#include <linux/module.h> |
|
34 35#include "hid-ids.h" 36 37#ifdef CONFIG_HID_ACRUX_FF 38#include "usbhid/usbhid.h" 39 40struct axff_device { 41 struct hid_report *report; --- 169 unchanged lines hidden --- | 35 36#include "hid-ids.h" 37 38#ifdef CONFIG_HID_ACRUX_FF 39#include "usbhid/usbhid.h" 40 41struct axff_device { 42 struct hid_report *report; --- 169 unchanged lines hidden --- |