Kconfig 1.2 KB

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