Kconfig 889 B

1234567891011121314151617181920212223242526272829
  1. menu "Userspace I/O"
  2. depends on !S390
  3. config UIO
  4. tristate "Userspace I/O drivers"
  5. default n
  6. help
  7. Enable this to allow the userspace driver core code to be
  8. built. This code allows userspace programs easy access to
  9. kernel interrupts and memory locations, allowing some drivers
  10. to be written in userspace. Note that a small kernel driver
  11. is also required for interrupt handling to work properly.
  12. If you don't know what to do here, say N.
  13. config UIO_CIF
  14. tristate "generic Hilscher CIF Card driver"
  15. depends on UIO && PCI
  16. default n
  17. help
  18. Driver for Hilscher CIF DeviceNet and Profibus cards. This
  19. driver requires a userspace component that handles all of the
  20. heavy lifting and can be found at:
  21. http://www.osadl.org/projects/downloads/UIO/user/cif-*
  22. To compile this driver as a module, choose M here: the module
  23. will be called uio_cif.
  24. endmenu