hid-dummy.c 335 B

123456789101112131415161718
  1. #include <linux/autoconf.h>
  2. #include <linux/module.h>
  3. #include <linux/hid.h>
  4. static int __init hid_dummy_init(void)
  5. {
  6. #ifdef CONFIG_HID_APPLE_MODULE
  7. HID_COMPAT_CALL_DRIVER(apple);
  8. #endif
  9. #ifdef CONFIG_HID_LOGITECH_MODULE
  10. HID_COMPAT_CALL_DRIVER(logitech);
  11. #endif
  12. return -EIO;
  13. }
  14. module_init(hid_dummy_init);
  15. MODULE_LICENSE("GPL");