]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/hid/hid-dummy.c
HID: move gyration quirks
[mirror_ubuntu-hirsute-kernel.git] / drivers / hid / hid-dummy.c
CommitLineData
02ae9a1a
JS
1#include <linux/autoconf.h>
2#include <linux/module.h>
3#include <linux/hid.h>
4
5static int __init hid_dummy_init(void)
6{
14a21cd4
JS
7#ifdef CONFIG_HID_A4TECH_MODULE
8 HID_COMPAT_CALL_DRIVER(a4tech);
9#endif
02ae9a1a
JS
10#ifdef CONFIG_HID_APPLE_MODULE
11 HID_COMPAT_CALL_DRIVER(apple);
12#endif
b5635b12
JS
13#ifdef CONFIG_HID_BELKIN_MODULE
14 HID_COMPAT_CALL_DRIVER(belkin);
15#endif
3b239cd7
JS
16#ifdef CONFIG_HID_CHERRY_MODULE
17 HID_COMPAT_CALL_DRIVER(cherry);
18#endif
fcfacfd3
JS
19#ifdef CONFIG_HID_CHICONY_MODULE
20 HID_COMPAT_CALL_DRIVER(chicony);
21#endif
0f221320
JS
22#ifdef CONFIG_HID_CYPRESS_MODULE
23 HID_COMPAT_CALL_DRIVER(cypress);
24#endif
1f243e30
JS
25#ifdef CONFIG_HID_EZKEY_MODULE
26 HID_COMPAT_CALL_DRIVER(ezkey);
27#endif
949f8fef
JS
28#ifdef CONFIG_HID_EZKEY_MODULE
29 HID_COMPAT_CALL_DRIVER(gyration);
30#endif
02ae9a1a
JS
31#ifdef CONFIG_HID_LOGITECH_MODULE
32 HID_COMPAT_CALL_DRIVER(logitech);
33#endif
78a849a6
JS
34#ifdef CONFIG_HID_MICROSOFT_MODULE
35 HID_COMPAT_CALL_DRIVER(microsoft);
36#endif
3b8006e5
JS
37#ifdef CONFIG_HID_MONTEREY_MODULE
38 HID_COMPAT_CALL_DRIVER(monterey);
39#endif
1e762532
JS
40#ifdef CONFIG_HID_PETALYNX_MODULE
41 HID_COMPAT_CALL_DRIVER(petalynx);
42#endif
90231e7e
JS
43#ifdef CONFIG_HID_SUNPLUS_MODULE
44 HID_COMPAT_CALL_DRIVER(sunplus);
45#endif
02ae9a1a
JS
46
47 return -EIO;
48}
49module_init(hid_dummy_init);
50
51MODULE_LICENSE("GPL");