HID: move ezkey quirks
[linux-2.6/mini2440.git] / drivers / hid / hid-dummy.c
blob0dbdbb73b73c568f93b1829a696cd51822b037a9
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_CHERRY_MODULE
14 HID_COMPAT_CALL_DRIVER(cherry);
15 #endif
16 #ifdef CONFIG_HID_CYPRESS_MODULE
17 HID_COMPAT_CALL_DRIVER(cypress);
18 #endif
19 #ifdef CONFIG_HID_EZKEY_MODULE
20 HID_COMPAT_CALL_DRIVER(ezkey);
21 #endif
22 #ifdef CONFIG_HID_LOGITECH_MODULE
23 HID_COMPAT_CALL_DRIVER(logitech);
24 #endif
25 #ifdef CONFIG_HID_MICROSOFT_MODULE
26 HID_COMPAT_CALL_DRIVER(microsoft);
27 #endif
28 #ifdef CONFIG_HID_SUNPLUS_MODULE
29 HID_COMPAT_CALL_DRIVER(sunplus);
30 #endif
32 return -EIO;
34 module_init(hid_dummy_init);
36 MODULE_LICENSE("GPL");