Skip to content

Commit 1f092fb

Browse files
committed
bluetooth: controller: fix MIN_VAL_OF_MAX_ACL_TX_PAYLOAD_DEFAULT
Was not using the correct define in the ifdef, so could not be used. Signed-off-by: Sean Madigan <[email protected]>
1 parent 14e6e7b commit 1f092fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subsys/bluetooth/controller/hci_driver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1390,7 +1390,7 @@ static int hci_driver_open(const struct device *dev, bt_hci_recv_t recv_func)
13901390
}
13911391
}
13921392

1393-
#if defined(BT_CTLR_MIN_VAL_OF_MAX_ACL_TX_PAYLOAD_DEFAULT)
1393+
#if defined(CONFIG_BT_CTLR_MIN_VAL_OF_MAX_ACL_TX_PAYLOAD_DEFAULT)
13941394
if (CONFIG_BT_CTLR_MIN_VAL_OF_MAX_ACL_TX_PAYLOAD_DEFAULT != 27) {
13951395
sdc_hci_cmd_vs_min_val_of_max_acl_tx_payload_set_t params = {
13961396
.min_val_of_max_acl_tx_payload =

0 commit comments

Comments
 (0)