Linux Audio

Check our new training course

Loading...
v6.2
 1# SPDX-License-Identifier: GPL-2.0-only
 2#
 3# RF switch subsystem configuration
 4#
 5menuconfig 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
11	  To compile this driver as a module, choose M here: the
12	  module will be called rfkill.
13
14# LED trigger support
15config RFKILL_LEDS
16	bool
17	depends on RFKILL
18	depends on LEDS_TRIGGERS = y || RFKILL = LEDS_TRIGGERS
19	default y
20
21config 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
27config RFKILL_GPIO
28	tristate "GPIO RFKILL driver"
29	depends on RFKILL
30	depends on GPIOLIB || COMPILE_TEST
31	default n
32	help
33	  If you say yes here you get support of a generic gpio RFKILL
34	  driver.
v4.10.11
 
 1#
 2# RF switch subsystem configuration
 3#
 4menuconfig 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
10	  To compile this driver as a module, choose M here: the
11	  module will be called rfkill.
12
13# LED trigger support
14config RFKILL_LEDS
15	bool
16	depends on RFKILL
17	depends on LEDS_TRIGGERS = y || RFKILL = LEDS_TRIGGERS
18	default y
19
20config RFKILL_INPUT
21	bool "RF switch input support" if EXPERT
22	depends on RFKILL
23	depends on INPUT = y || RFKILL = INPUT
24	default y if !EXPERT
25
26config 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
34          To compile this driver as a module, choose M here: the module will
35          be called rfkill-regulator.
36
37config RFKILL_GPIO
38	tristate "GPIO RFKILL driver"
39	depends on RFKILL
40	depends on GPIOLIB || COMPILE_TEST
41	default n
42	help
43	  If you say yes here you get support of a generic gpio RFKILL
44	  driver.