Files
android_kernel_samsung_sm86…/target.bzl
Balakrishna Godavarthi 679c16880e btkernel: update a typo error in bazel file
This change updates a typo error in bazel file.

Change-Id: I447cbc02cb0d28a514b8c2c5d1ec6741d718698d
Signed-off-by: Balakrishna Godavarthi <quic_bgodavar@quicinc.com>
2024-02-01 22:11:32 +05:30

52 行
1.1 KiB
Python

load(":bt_kernel.bzl", "define_bt_modules")
def define_pineapple():
define_bt_modules(
target = "pineapple",
modules = [
"btpower",
"bt_fm_slim",
"radio-i2c-rtc6226-qca",
# "btfm_slim_codec",
],
config_options = [
"CONFIG_MSM_BT_POWER",
"CONFIG_BTFM_SLIM",
"CONFIG_I2C_RTC6226_QCA",
# "CONFIG_SLIM_BTFM_CODEC",
"CONFIG_BT_HW_SECURE_DISABLE",
]
)
def define_blair():
define_bt_modules(
target = "blair",
modules = [
"btpower",
"bt_fm_slim",
"radio-i2c-rtc6226-qca",
],
config_options = [
"CONFIG_MSM_BT_POWER",
"CONFIG_BTFM_SLIM",
"CONFIG_I2C_RTC6226_QCA",
"CONFIG_BT_HW_SECURE_DISABLE",
]
)
def define_pitti():
define_bt_modules(
target = "pitti",
modules = [
"btpower",
"bt_fm_slim",
"radio-i2c-rtc6226-qca",
],
config_options = [
"CONFIG_MSM_BT_POWER",
"CONFIG_BTFM_SLIM",
"CONFIG_I2C_RTC6226_QCA",
"CONFIG_BT_HW_SECURE_DISABLE",
]
)