
Bring BT family drivers from msm-5.10 kernel to BT kernel project. drivers/bluetooth/btpower.c -> . drivers/bluetooth/btfm* -> . drivers/media/radio/rtc6226/* -> . include/net/bt* -> include/ Above shows how directories and header files are relocated. Change-Id: I6263eaa81dec344d7589f09ad3ec525ee7b04a8a
16 lines
353 B
Makefile
16 lines
353 B
Makefile
ifeq ($(CONFIG_MSM_BT_POWER),m)
|
|
KBUILD_CPPFLAGS += -DCONFIG_MSM_BT_POWER
|
|
endif
|
|
|
|
ifeq ($(CONFIG_BTFM_SLIM),m)
|
|
KBUILD_CPPFLAGS += -DCONFIG_BTFM_SLIM
|
|
endif
|
|
|
|
ifeq ($(CONFIG_I2C_RTC6226_QCA),m)
|
|
KBUILD_CPPFLAGS += -DCONFIG_I2C_RTC6226_QCA
|
|
endif
|
|
|
|
obj-$(CONFIG_MSM_BT_POWER) += pwr/
|
|
obj-$(CONFIG_BTFM_SLIM) += slimbus/
|
|
obj-$(CONFIG_I2C_RTC6226_QCA) += rtc6226/
|