Skip to content

Commit 3a996c5

Browse files
cvinayakkartben
authored andcommitted
Bluetooth: Controller: Fix BT_CTLR_LOW_LAT_ULL dependency
Fix BT_CTLR_LOW_LAT_ULL dependency after changes in commit 5119896 ("Bluetooth: Controller: Fix BT_CTLR_LOW_LAT_ULL conditional code"). BT_CTLR_LOW_LAT_ULL is independent of BT_CTLR_LOW_LAT, where the later prevents any ULL execution inside a radio event. Signed-off-by: Vinayak Kariappa Chettimada <[email protected]>
1 parent 3a8dddc commit 3a996c5

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

subsys/bluetooth/controller/Kconfig.ll_sw_split

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -890,8 +890,6 @@ config BT_CTLR_LOW_LAT
890890
config BT_CTLR_LOW_LAT_ULL
891891
prompt "Low latency ULL"
892892
bool
893-
depends on BT_CTLR_LOW_LAT
894-
default y
895893
help
896894
Low latency ULL implementation that uses tailchaining instead of while
897895
loop to demux rx messages from LLL.
@@ -1088,7 +1086,7 @@ config BT_CTLR_THROUGHPUT
10881086

10891087
config BT_CTLR_FORCE_MD_COUNT
10901088
int "Forced MD bit count" if !BT_CTLR_FORCE_MD_AUTO
1091-
depends on !BT_CTLR_LOW_LAT_ULL
1089+
depends on !BT_CTLR_LOW_LAT
10921090
range 0 $(UINT8_MAX)
10931091
default 1 if BT_CTLR_FORCE_MD_AUTO
10941092
default 0
@@ -1102,7 +1100,7 @@ config BT_CTLR_FORCE_MD_COUNT
11021100

11031101
config BT_CTLR_FORCE_MD_AUTO
11041102
bool "Forced MD bit automatic calculation"
1105-
depends on !BT_CTLR_LOW_LAT_ULL
1103+
depends on !BT_CTLR_LOW_LAT
11061104
select BT_CTLR_THROUGHPUT
11071105
default y if BT_HCI_RAW
11081106
help

0 commit comments

Comments
 (0)