blob: 28815fd6c28577a9e81c955bea8469329bf8a4d0 [file] [log] [blame]
Jiri Slaby02ae9a12008-05-16 11:49:22 +02001#include <linux/autoconf.h>
2#include <linux/module.h>
3#include <linux/hid.h>
4
5static int __init hid_dummy_init(void)
6{
Jiri Slaby14a21cd2008-06-23 23:31:09 +02007#ifdef CONFIG_HID_A4TECH_MODULE
8 HID_COMPAT_CALL_DRIVER(a4tech);
9#endif
Jiri Slaby02ae9a12008-05-16 11:49:22 +020010#ifdef CONFIG_HID_APPLE_MODULE
11 HID_COMPAT_CALL_DRIVER(apple);
12#endif
Jiri Slabyb5635b12008-06-24 23:24:57 +020013#ifdef CONFIG_HID_BELKIN_MODULE
14 HID_COMPAT_CALL_DRIVER(belkin);
15#endif
Mauro Carvalho Chehaba48c65b2008-10-14 22:41:43 +020016#ifdef CONFIG_HID_BRIGHT_MODULE
17 HID_COMPAT_CALL_DRIVER(bright);
18#endif
Jiri Slaby3b239cd2008-06-24 20:42:25 +020019#ifdef CONFIG_HID_CHERRY_MODULE
20 HID_COMPAT_CALL_DRIVER(cherry);
21#endif
Jiri Slabyfcfacfd2008-06-24 22:48:52 +020022#ifdef CONFIG_HID_CHICONY_MODULE
23 HID_COMPAT_CALL_DRIVER(chicony);
24#endif
Jiri Slaby0f221322008-06-23 22:54:08 +020025#ifdef CONFIG_HID_CYPRESS_MODULE
26 HID_COMPAT_CALL_DRIVER(cypress);
27#endif
Jiri Slabyfea6f182008-06-26 22:25:33 +020028#ifdef CONFIG_HID_DELL_MODULE
29 HID_COMPAT_CALL_DRIVER(dell);
30#endif
Richard Walmsley3f866fb2009-03-04 22:12:04 +130031#ifdef CONFIG_DRAGONRISE_FF_MODULE
32 HID_COMPAT_CALL_DRIVER(dragonrise);
33#endif
Jiri Slaby1f243e32008-06-24 21:11:21 +020034#ifdef CONFIG_HID_EZKEY_MODULE
35 HID_COMPAT_CALL_DRIVER(ezkey);
36#endif
Randy Dunlape36153f2008-09-04 10:55:00 +020037#ifdef CONFIG_HID_GYRATION_MODULE
Jiri Slaby949f8fe2008-07-24 23:35:13 +020038 HID_COMPAT_CALL_DRIVER(gyration);
39#endif
Jiri Kosinafdf93aa2009-03-04 16:09:40 +010040#ifdef CONFIG_HID_KENSINGTON_MODULE
41 HID_COMPAT_CALL_DRIVER(kensington);
42#endif
Jiri Slaby02ae9a12008-05-16 11:49:22 +020043#ifdef CONFIG_HID_LOGITECH_MODULE
44 HID_COMPAT_CALL_DRIVER(logitech);
45#endif
Jiri Slaby78a849a682008-06-20 21:26:11 +020046#ifdef CONFIG_HID_MICROSOFT_MODULE
47 HID_COMPAT_CALL_DRIVER(microsoft);
48#endif
Jiri Slaby3b8006e2008-06-25 00:07:50 +020049#ifdef CONFIG_HID_MONTEREY_MODULE
50 HID_COMPAT_CALL_DRIVER(monterey);
51#endif
Rafi Rubin94011f92008-11-19 15:54:46 +010052#ifdef CONFIG_HID_NTRIG_MODULE
53 HID_COMPAT_CALL_DRIVER(ntrig);
54#endif
Jiri Slaby5f022292008-09-18 19:43:32 +020055#ifdef CONFIG_HID_PANTHERLORD_MODULE
56 HID_COMPAT_CALL_DRIVER(pantherlord);
57#endif
Jiri Slaby1e762532008-06-24 23:46:21 +020058#ifdef CONFIG_HID_PETALYNX_MODULE
59 HID_COMPAT_CALL_DRIVER(petalynx);
60#endif
Jiri Slaby980a3da2008-06-25 22:31:48 +020061#ifdef CONFIG_HID_SAMSUNG_MODULE
62 HID_COMPAT_CALL_DRIVER(samsung);
63#endif
Jiri Slabybd28ce02008-06-25 23:47:04 +020064#ifdef CONFIG_HID_SONY_MODULE
65 HID_COMPAT_CALL_DRIVER(sony);
66#endif
Jiri Slaby90231e72008-06-23 21:56:07 +020067#ifdef CONFIG_HID_SUNPLUS_MODULE
68 HID_COMPAT_CALL_DRIVER(sunplus);
69#endif
Lukasz Lubojanski42859e02008-12-11 22:07:59 +010070#ifdef CONFIG_GREENASIA_FF_MODULE
71 HID_COMPAT_CALL_DRIVER(greenasia);
72#endif
Jiri Slaby10e41a72008-09-18 12:23:31 +020073#ifdef CONFIG_THRUSTMASTER_FF_MODULE
74 HID_COMPAT_CALL_DRIVER(thrustmaster);
75#endif
Jiri Slaby987fbc12008-09-18 12:23:32 +020076#ifdef CONFIG_ZEROPLUS_FF_MODULE
77 HID_COMPAT_CALL_DRIVER(zeroplus);
78#endif
Jiri Slaby02ae9a12008-05-16 11:49:22 +020079
80 return -EIO;
81}
82module_init(hid_dummy_init);
83
84MODULE_LICENSE("GPL");