blob: b76c44efe1b8521e262f58fa858a8520cebc8317 [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{
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}
16module_init(hid_dummy_init);
17
18MODULE_LICENSE("GPL");