hid-tmff.c (020abf03cd659388f94cb328e1e1df0656e0d7ff) hid-tmff.c (8f86a2c3cb90e8bb0733de2d2b0abbe7050bb536)
1/*
2 * Force feedback support for various HID compliant devices by ThrustMaster:
3 * ThrustMaster FireStorm Dual Power 2
4 * and possibly others whose device ids haven't been added.
5 *
6 * Modified to support ThrustMaster devices by Zinx Verituse
7 * on 2003-01-25 from the Logitech force feedback driver,
8 * which is by Johann Deneux.

--- 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/hid.h>
31#include <linux/input.h>
32#include <linux/slab.h>
33#include <linux/usb.h>
1/*
2 * Force feedback support for various HID compliant devices by ThrustMaster:
3 * ThrustMaster FireStorm Dual Power 2
4 * and possibly others whose device ids haven't been added.
5 *
6 * Modified to support ThrustMaster devices by Zinx Verituse
7 * on 2003-01-25 from the Logitech force feedback driver,
8 * which is by Johann Deneux.

--- 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/hid.h>
31#include <linux/input.h>
32#include <linux/slab.h>
33#include <linux/usb.h>
34#include <linux/module.h>
34
35#include "hid-ids.h"
36
37static const signed short ff_rumble[] = {
38 FF_RUMBLE,
39 -1
40};
41

--- 235 unchanged lines hidden ---
35
36#include "hid-ids.h"
37
38static const signed short ff_rumble[] = {
39 FF_RUMBLE,
40 -1
41};
42

--- 235 unchanged lines hidden ---