From 224ee88fe39564358ec99b46bf3ee6e6999ae17d Mon Sep 17 00:00:00 2001 From: Anssi Hannula Date: Wed, 19 Jul 2006 01:40:47 -0400 Subject: Input: add force feedback driver for PID devices This replaces the older PID driver which was never completed. Signed-off-by: Anssi Hannula Signed-off-by: Dmitry Torokhov --- drivers/usb/input/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers/usb/input/Makefile') diff --git a/drivers/usb/input/Makefile b/drivers/usb/input/Makefile index 764114529c5..84e72dcfc92 100644 --- a/drivers/usb/input/Makefile +++ b/drivers/usb/input/Makefile @@ -14,7 +14,7 @@ ifeq ($(CONFIG_USB_HIDINPUT),y) usbhid-objs += hid-input.o endif ifeq ($(CONFIG_HID_PID),y) - usbhid-objs += pid.o + usbhid-objs += hid-pidff.o endif ifeq ($(CONFIG_LOGITECH_FF),y) usbhid-objs += hid-lgff.o -- cgit v1.2.3 From bb3caf7f438a67452f5cf4773ca1bf82260bbbad Mon Sep 17 00:00:00 2001 From: Anssi Hannula Date: Wed, 19 Jul 2006 01:44:17 -0400 Subject: Input: add force feedback driver for PSX-style Zeroplus devices Signed-off-by: Anssi Hannula Signed-off-by: Dmitry Torokhov --- drivers/usb/input/Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'drivers/usb/input/Makefile') diff --git a/drivers/usb/input/Makefile b/drivers/usb/input/Makefile index 84e72dcfc92..affb6a36d24 100644 --- a/drivers/usb/input/Makefile +++ b/drivers/usb/input/Makefile @@ -22,6 +22,9 @@ endif ifeq ($(CONFIG_THRUSTMASTER_FF),y) usbhid-objs += hid-tmff.o endif +ifeq ($(CONFIG_ZEROPLUS_FF),y) + usbhid-objs += hid-zpff.o +endif ifeq ($(CONFIG_HID_FF),y) usbhid-objs += hid-ff.o endif -- cgit v1.2.3