Jiri Slaby | 02ae9a1 | 2008-05-16 11:49:22 +0200 | [diff] [blame^] | 1 | #include <linux/autoconf.h> |
2 | #include <linux/module.h> | ||||
3 | #include <linux/hid.h> | ||||
4 | |||||
5 | static int __init hid_dummy_init(void) | ||||
6 | { | ||||
7 | #ifdef CONFIG_HID_APPLE_MODULE | ||||
8 | HID_COMPAT_CALL_DRIVER(apple); | ||||
9 | #endif | ||||
10 | #ifdef CONFIG_HID_LOGITECH_MODULE | ||||
11 | HID_COMPAT_CALL_DRIVER(logitech); | ||||
12 | #endif | ||||
13 | |||||
14 | return -EIO; | ||||
15 | } | ||||
16 | module_init(hid_dummy_init); | ||||
17 | |||||
18 | MODULE_LICENSE("GPL"); |