Kconfig 814 B

12345678910111213141516171819202122232425262728293031323334
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # RF switch subsystem configuration
  4. #
  5. menuconfig RFKILL
  6. tristate "RF switch subsystem support"
  7. help
  8. Say Y here if you want to have control over RF switches
  9. found on many WiFi and Bluetooth cards.
  10. To compile this driver as a module, choose M here: the
  11. module will be called rfkill.
  12. # LED trigger support
  13. config RFKILL_LEDS
  14. bool
  15. depends on RFKILL
  16. depends on LEDS_TRIGGERS = y || RFKILL = LEDS_TRIGGERS
  17. default y
  18. config RFKILL_INPUT
  19. bool "RF switch input support" if EXPERT
  20. depends on RFKILL
  21. depends on INPUT = y || RFKILL = INPUT
  22. default y if !EXPERT
  23. config RFKILL_GPIO
  24. tristate "GPIO RFKILL driver"
  25. depends on RFKILL
  26. depends on GPIOLIB || COMPILE_TEST
  27. default n
  28. help
  29. If you say yes here you get support of a generic gpio RFKILL
  30. driver.