]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/hid/hid-dummy.c
fe64d60f901035a91c63e824cb1d46c5435bf953
[linux-2.6-omap-h63xx.git] / drivers / hid / hid-dummy.c
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 #ifdef CONFIG_HID_MICROSOFT_MODULE
14         HID_COMPAT_CALL_DRIVER(microsoft);
15 #endif
16
17         return -EIO;
18 }
19 module_init(hid_dummy_init);
20
21 MODULE_LICENSE("GPL");