Kconfig 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #
  2. # RF switch subsystem configuration
  3. #
  4. menuconfig RFKILL
  5. tristate "RF switch subsystem support"
  6. help
  7. Say Y here if you want to have control over RF switches
  8. found on many WiFi and Bluetooth cards.
  9. To compile this driver as a module, choose M here: the
  10. module will be called rfkill.
  11. config RFKILL_PM
  12. bool "Power off on suspend"
  13. depends on RFKILL && PM
  14. default y
  15. # LED trigger support
  16. config RFKILL_LEDS
  17. bool
  18. depends on RFKILL
  19. depends on LEDS_TRIGGERS = y || RFKILL = LEDS_TRIGGERS
  20. default y
  21. config RFKILL_INPUT
  22. bool "RF switch input support" if EXPERT
  23. depends on RFKILL
  24. depends on INPUT = y || RFKILL = INPUT
  25. default y if !EXPERT
  26. config RFKILL_REGULATOR
  27. tristate "Generic rfkill regulator driver"
  28. depends on RFKILL || !RFKILL
  29. depends on REGULATOR
  30. help
  31. This options enable controlling radio transmitters connected to
  32. voltage regulator using the regulator framework.
  33. To compile this driver as a module, choose M here: the module will
  34. be called rfkill-regulator.
  35. config RFKILL_GPIO
  36. tristate "GPIO RFKILL driver"
  37. depends on RFKILL && GPIOLIB && HAVE_CLK
  38. default n
  39. help
  40. If you say yes here you get support of a generic gpio RFKILL
  41. driver. The platform should fill in the appropriate fields in the
  42. rfkill_gpio_platform_data structure and pass that to the driver.