mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 14:42:37 +02:00
Allow rfkill-bt.c and rfkill-wlan.c build as module. Add CONFIG_RFKILL_RK which default y. Change-Id: I1d399641587124d2291b5b49e5538e7e490a843a Signed-off-by: Tao Huang <huangtao@rock-chips.com>
11 lines
267 B
Makefile
11 lines
267 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_GPIO) += rfkill-gpio.o
|
|
rfkill-rk-y += rfkill-wlan.o rfkill-bt.o
|
|
obj-$(CONFIG_RFKILL_RK) += rfkill-rk.o
|