Skip to content

Commit

Permalink
bluetooth: controller: fix CONFIG_BT_CTLR_MIN_VAL_OF_MAX_ACL_TX_PAYLO…
Browse files Browse the repository at this point in the history
…AD_DEFAULT

Was not using the correct define in the ifdef, so could not
be used.

Signed-off-by: Sean Madigan <[email protected]>
  • Loading branch information
sean-madigan committed Dec 18, 2024
1 parent ba929f9 commit b783870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subsys/bluetooth/controller/hci_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -1390,7 +1390,7 @@ static int hci_driver_open(const struct device *dev, bt_hci_recv_t recv_func)
}
}

#if defined(BT_CTLR_MIN_VAL_OF_MAX_ACL_TX_PAYLOAD_DEFAULT)
#if defined(CONFIG_BT_CTLR_MIN_VAL_OF_MAX_ACL_TX_PAYLOAD_DEFAULT)
if (CONFIG_BT_CTLR_MIN_VAL_OF_MAX_ACL_TX_PAYLOAD_DEFAULT != 27) {
sdc_hci_cmd_vs_min_val_of_max_acl_tx_payload_set_t params = {
.min_val_of_max_acl_tx_payload =
Expand Down

0 comments on commit b783870

Please sign in to comment.