mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
7176ba23f8
This adds a new generic gpio rfkill driver to support rfkill switches which are controlled by gpios. The driver also supports passing in data about the clock for the radio, so that when rfkill is blocking, it can disable the clock. This driver assumes platform data is passed from the board files to configure it for specific devices. Original-patch-by: Anantha Idapalapati <aidapalapati@nvidia.com> Signed-off-by: Rhyland Klein <rklein@nvidia.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
9 lines
237 B
Makefile
9 lines
237 B
Makefile
#
|
|
# Makefile for the RF switch subsystem.
|
|
#
|
|
|
|
rfkill-y += core.o
|
|
rfkill-$(CONFIG_RFKILL_INPUT) += input.o
|
|
obj-$(CONFIG_RFKILL) += rfkill.o
|
|
obj-$(CONFIG_RFKILL_REGULATOR) += rfkill-regulator.o
|
|
obj-$(CONFIG_RFKILL_GPIO) += rfkill-gpio.o
|