From 5a113ca271107cd97ce9667e810c2671a2424972 Mon Sep 17 00:00:00 2001 From: Nazar Palamar Date: Wed, 10 Jul 2024 15:36:32 +0300 Subject: [PATCH] driver/bluetooth / cyw208xx: update condition for select PAwR FW Select PAwR if enabled following features: - BT_PER_ADV_RSP - BT_PER_ADV_SYNC_RSP Remove dependency BT_AIROC_CUSTOM for AIROC_CUSTOM_FIRMWARE_HCD_BLOB Signed-off-by: Nazar Palamar --- drivers/bluetooth/hci/Kconfig.infineon | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/bluetooth/hci/Kconfig.infineon b/drivers/bluetooth/hci/Kconfig.infineon index b3c0fe78073..0dc30107e90 100644 --- a/drivers/bluetooth/hci/Kconfig.infineon +++ b/drivers/bluetooth/hci/Kconfig.infineon @@ -145,8 +145,8 @@ choice CYW20829_BT_FW prompt "Select variant of default CYW20829 BT FW" default CYW20829_BT_FW_ISOC_TX10 if BT_ISO && CYW20829_BT_FW_TX10DBM_POWER default CYW20829_BT_FW_ISOC_TX0 if BT_ISO && !CYW20829_BT_FW_TX10DBM_POWER - default CYW20829_BT_FW_PAWR_TX10 if BT_PER_ADV_RSP && CYW20829_BT_FW_TX10DBM_POWER - default CYW20829_BT_FW_PAWR_TX0 if BT_PER_ADV_RSP && !CYW20829_BT_FW_TX10DBM_POWER + default CYW20829_BT_FW_PAWR_TX10 if (BT_PER_ADV_RSP || BT_PER_ADV_SYNC_RSP) && CYW20829_BT_FW_TX10DBM_POWER + default CYW20829_BT_FW_PAWR_TX0 if (BT_PER_ADV_RSP || BT_PER_ADV_SYNC_RSP) && !CYW20829_BT_FW_TX10DBM_POWER default CYW20829_BT_FW_TX10 if CYW20829_BT_FW_TX10DBM_POWER default CYW20829_BT_FW_TX0 @@ -190,7 +190,6 @@ endchoice endif # CYW20829 config AIROC_CUSTOM_FIRMWARE_HCD_BLOB - depends on BT_AIROC_CUSTOM string "Path to user BT firmware HCD file" help Path to BT firmware HCD file for custom or vendor CYW43xx modules.