Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #
  2. # HID driver configuration
  3. #
  4. menuconfig HID_SUPPORT
  5. bool "HID Devices"
  6. depends on INPUT
  7. default y
  8. if HID_SUPPORT
  9. config HID
  10. tristate "Generic HID support"
  11. depends on INPUT
  12. default y
  13. ---help---
  14. A human interface device (HID) is a type of computer device that
  15. interacts directly with and takes input from humans. The term "HID"
  16. most commonly used to refer to the USB-HID specification, but other
  17. devices (such as, but not strictly limited to, Bluetooth) are
  18. designed using HID specification (this involves certain keyboards,
  19. mice, tablets, etc). This option compiles into kernel the generic
  20. HID layer code (parser, usages, etc.), which can then be used by
  21. transport-specific HID implementation (like USB or Bluetooth).
  22. For docs and specs, see http://www.usb.org/developers/hidpage/
  23. If unsure, say Y
  24. config HID_DEBUG
  25. bool "HID debugging support"
  26. default y if !EMBEDDED
  27. depends on HID
  28. ---help---
  29. This option lets the HID layer output diagnostics about its internal
  30. state, resolve HID usages, dump HID fields, etc. Individual HID drivers
  31. use this debugging facility to output information about individual HID
  32. devices, etc.
  33. This feature is useful for those who are either debugging the HID parser
  34. or any HID hardware device.
  35. If unsure, say N
  36. source "drivers/hid/usbhid/Kconfig"
  37. endif # HID_SUPPORT