aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid/hid-dummy.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/hid/hid-dummy.c')
-rw-r--r--drivers/hid/hid-dummy.c87
1 files changed, 0 insertions, 87 deletions
diff --git a/drivers/hid/hid-dummy.c b/drivers/hid/hid-dummy.c
deleted file mode 100644
index 74d765f38624..000000000000
--- a/drivers/hid/hid-dummy.c
+++ /dev/null
@@ -1,87 +0,0 @@
1#include <linux/autoconf.h>
2#include <linux/module.h>
3#include <linux/hid.h>
4
5static int __init hid_dummy_init(void)
6{
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_BRIGHT_MODULE
17 HID_COMPAT_CALL_DRIVER(bright);
18#endif
19#ifdef CONFIG_HID_CHERRY_MODULE
20 HID_COMPAT_CALL_DRIVER(cherry);
21#endif
22#ifdef CONFIG_HID_CHICONY_MODULE
23 HID_COMPAT_CALL_DRIVER(chicony);
24#endif
25#ifdef CONFIG_HID_CYPRESS_MODULE
26 HID_COMPAT_CALL_DRIVER(cypress);
27#endif
28#ifdef CONFIG_HID_DELL_MODULE
29 HID_COMPAT_CALL_DRIVER(dell);
30#endif
31#ifdef CONFIG_DRAGONRISE_FF_MODULE
32 HID_COMPAT_CALL_DRIVER(dragonrise);
33#endif
34#ifdef CONFIG_HID_EZKEY_MODULE
35 HID_COMPAT_CALL_DRIVER(ezkey);
36#endif
37#ifdef CONFIG_HID_KYE_MODULE
38 HID_COMPAT_CALL_DRIVER(kye);
39#endif
40#ifdef CONFIG_HID_GYRATION_MODULE
41 HID_COMPAT_CALL_DRIVER(gyration);
42#endif
43#ifdef CONFIG_HID_KENSINGTON_MODULE
44 HID_COMPAT_CALL_DRIVER(kensington);
45#endif
46#ifdef CONFIG_HID_LOGITECH_MODULE
47 HID_COMPAT_CALL_DRIVER(logitech);
48#endif
49#ifdef CONFIG_HID_MICROSOFT_MODULE
50 HID_COMPAT_CALL_DRIVER(microsoft);
51#endif
52#ifdef CONFIG_HID_MONTEREY_MODULE
53 HID_COMPAT_CALL_DRIVER(monterey);
54#endif
55#ifdef CONFIG_HID_NTRIG_MODULE
56 HID_COMPAT_CALL_DRIVER(ntrig);
57#endif
58#ifdef CONFIG_HID_PANTHERLORD_MODULE
59 HID_COMPAT_CALL_DRIVER(pantherlord);
60#endif
61#ifdef CONFIG_HID_PETALYNX_MODULE
62 HID_COMPAT_CALL_DRIVER(petalynx);
63#endif
64#ifdef CONFIG_HID_SAMSUNG_MODULE
65 HID_COMPAT_CALL_DRIVER(samsung);
66#endif
67#ifdef CONFIG_HID_SONY_MODULE
68 HID_COMPAT_CALL_DRIVER(sony);
69#endif
70#ifdef CONFIG_HID_SUNPLUS_MODULE
71 HID_COMPAT_CALL_DRIVER(sunplus);
72#endif
73#ifdef CONFIG_GREENASIA_FF_MODULE
74 HID_COMPAT_CALL_DRIVER(greenasia);
75#endif
76#ifdef CONFIG_THRUSTMASTER_FF_MODULE
77 HID_COMPAT_CALL_DRIVER(thrustmaster);
78#endif
79#ifdef CONFIG_ZEROPLUS_FF_MODULE
80 HID_COMPAT_CALL_DRIVER(zeroplus);
81#endif
82
83 return -EIO;
84}
85module_init(hid_dummy_init);
86
87MODULE_LICENSE("GPL");