HID: move pantherlord FF processing
[linux-2.6/linux-loongson.git] / drivers / hid / hid-dummy.c
blob2f5d9a1a352c518f0691c57007b722e2fcb9e30c
1 #include <linux/autoconf.h>
2 #include <linux/module.h>
3 #include <linux/hid.h>
5 static int __init hid_dummy_init(void)
7 #ifdef CONFIG_HID_A4TECH_MODULE
8 HID_COMPAT_CALL_DRIVER(a4tech);
9 #endif
10 #ifdef CONFIG_HID_APPLE_MODULE
11 HID_COMPAT_CALL_DRIVER(apple);
12 #endif
13 #ifdef CONFIG_HID_BELKIN_MODULE
14 HID_COMPAT_CALL_DRIVER(belkin);
15 #endif
16 #ifdef CONFIG_HID_CHERRY_MODULE
17 HID_COMPAT_CALL_DRIVER(cherry);
18 #endif
19 #ifdef CONFIG_HID_CHICONY_MODULE
20 HID_COMPAT_CALL_DRIVER(chicony);
21 #endif
22 #ifdef CONFIG_HID_CYPRESS_MODULE
23 HID_COMPAT_CALL_DRIVER(cypress);
24 #endif
25 #ifdef CONFIG_HID_DELL_MODULE
26 HID_COMPAT_CALL_DRIVER(dell);
27 #endif
28 #ifdef CONFIG_HID_EZKEY_MODULE
29 HID_COMPAT_CALL_DRIVER(ezkey);
30 #endif
31 #ifdef CONFIG_HID_GYRATION_MODULE
32 HID_COMPAT_CALL_DRIVER(gyration);
33 #endif
34 #ifdef CONFIG_HID_LOGITECH_MODULE
35 HID_COMPAT_CALL_DRIVER(logitech);
36 #endif
37 #ifdef CONFIG_HID_MICROSOFT_MODULE
38 HID_COMPAT_CALL_DRIVER(microsoft);
39 #endif
40 #ifdef CONFIG_HID_MONTEREY_MODULE
41 HID_COMPAT_CALL_DRIVER(monterey);
42 #endif
43 #ifdef CONFIG_HID_PANTHERLORD_MODULE
44 HID_COMPAT_CALL_DRIVER(pantherlord);
45 #endif
46 #ifdef CONFIG_HID_PETALYNX_MODULE
47 HID_COMPAT_CALL_DRIVER(petalynx);
48 #endif
49 #ifdef CONFIG_HID_SAMSUNG_MODULE
50 HID_COMPAT_CALL_DRIVER(samsung);
51 #endif
52 #ifdef CONFIG_HID_SONY_MODULE
53 HID_COMPAT_CALL_DRIVER(sony);
54 #endif
55 #ifdef CONFIG_HID_SUNPLUS_MODULE
56 HID_COMPAT_CALL_DRIVER(sunplus);
57 #endif
59 return -EIO;
61 module_init(hid_dummy_init);
63 MODULE_LICENSE("GPL");