Kconfig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. # LED trigger support
  12. config RFKILL_LEDS
  13. bool
  14. depends on RFKILL
  15. depends on LEDS_TRIGGERS = y || RFKILL = LEDS_TRIGGERS
  16. default y
  17. config RFKILL_INPUT
  18. bool "RF switch input support" if EXPERT
  19. depends on RFKILL
  20. depends on INPUT = y || RFKILL = INPUT
  21. default y if !EXPERT
  22. config RFKILL_REGULATOR
  23. tristate "Generic rfkill regulator driver"
  24. depends on RFKILL || !RFKILL
  25. depends on REGULATOR
  26. help
  27. This options enable controlling radio transmitters connected to
  28. voltage regulator using the regulator framework.
  29. To compile this driver as a module, choose M here: the module will
  30. be called rfkill-regulator.
  31. config RFKILL_GPIO
  32. tristate "GPIO RFKILL driver"
  33. depends on RFKILL
  34. depends on GPIOLIB || COMPILE_TEST
  35. default n
  36. help
  37. If you say yes here you get support of a generic gpio RFKILL
  38. driver. The platform should fill in the appropriate fields in the
  39. rfkill_gpio_platform_data structure and pass that to the driver.