diff options
Diffstat (limited to 'drivers/hid/Makefile')
-rw-r--r-- | drivers/hid/Makefile | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile index 275dc522c738..b09e43e7413e 100644 --- a/drivers/hid/Makefile +++ b/drivers/hid/Makefile | |||
@@ -1,13 +1,46 @@ | |||
1 | # | 1 | # |
2 | # Makefile for the HID driver | 2 | # Makefile for the HID driver |
3 | # | 3 | # |
4 | hid-objs := hid-core.o hid-input.o hid-input-quirks.o | 4 | hid-objs := hid-core.o hid-input.o |
5 | 5 | ||
6 | obj-$(CONFIG_HID) += hid.o | 6 | obj-$(CONFIG_HID) += hid.o |
7 | 7 | ||
8 | hid-$(CONFIG_HID_DEBUG) += hid-debug.o | 8 | hid-$(CONFIG_HID_DEBUG) += hid-debug.o |
9 | hid-$(CONFIG_HIDRAW) += hidraw.o | 9 | hid-$(CONFIG_HIDRAW) += hidraw.o |
10 | 10 | ||
11 | ifdef CONFIG_HID_COMPAT | ||
12 | obj-m += hid-dummy.o | ||
13 | endif | ||
14 | |||
15 | hid-logitech-objs := hid-lg.o | ||
16 | ifdef CONFIG_LOGITECH_FF | ||
17 | hid-logitech-objs += hid-lgff.o | ||
18 | endif | ||
19 | ifdef CONFIG_LOGIRUMBLEPAD2_FF | ||
20 | hid-logitech-objs += hid-lg2ff.o | ||
21 | endif | ||
22 | |||
23 | obj-$(CONFIG_HID_A4TECH) += hid-a4tech.o | ||
24 | obj-$(CONFIG_HID_APPLE) += hid-apple.o | ||
25 | obj-$(CONFIG_HID_BELKIN) += hid-belkin.o | ||
26 | obj-$(CONFIG_HID_BRIGHT) += hid-bright.o | ||
27 | obj-$(CONFIG_HID_CHERRY) += hid-cherry.o | ||
28 | obj-$(CONFIG_HID_CHICONY) += hid-chicony.o | ||
29 | obj-$(CONFIG_HID_CYPRESS) += hid-cypress.o | ||
30 | obj-$(CONFIG_HID_DELL) += hid-dell.o | ||
31 | obj-$(CONFIG_HID_EZKEY) += hid-ezkey.o | ||
32 | obj-$(CONFIG_HID_GYRATION) += hid-gyration.o | ||
33 | obj-$(CONFIG_HID_LOGITECH) += hid-logitech.o | ||
34 | obj-$(CONFIG_HID_MICROSOFT) += hid-microsoft.o | ||
35 | obj-$(CONFIG_HID_MONTEREY) += hid-monterey.o | ||
36 | obj-$(CONFIG_HID_PANTHERLORD) += hid-pl.o | ||
37 | obj-$(CONFIG_HID_PETALYNX) += hid-petalynx.o | ||
38 | obj-$(CONFIG_HID_SAMSUNG) += hid-samsung.o | ||
39 | obj-$(CONFIG_HID_SONY) += hid-sony.o | ||
40 | obj-$(CONFIG_HID_SUNPLUS) += hid-sunplus.o | ||
41 | obj-$(CONFIG_THRUSTMASTER_FF) += hid-tmff.o | ||
42 | obj-$(CONFIG_ZEROPLUS_FF) += hid-zpff.o | ||
43 | |||
11 | obj-$(CONFIG_USB_HID) += usbhid/ | 44 | obj-$(CONFIG_USB_HID) += usbhid/ |
12 | obj-$(CONFIG_USB_MOUSE) += usbhid/ | 45 | obj-$(CONFIG_USB_MOUSE) += usbhid/ |
13 | obj-$(CONFIG_USB_KBD) += usbhid/ | 46 | obj-$(CONFIG_USB_KBD) += usbhid/ |