Skip to content

Commit c2513eb

Browse files
cvinayakcarlescufi
authored andcommitted
Bluetooth: controller: Fix PHY update procedure cachability
Fix missing PHY update procedure cachability omitted in commit 16dbb9a ("Bluetooth: controller: split: Fix cmd disallowed and collision disconnects"). Relates to #31473. Signed-off-by: Vinayak Kariappa Chettimada <[email protected]>
1 parent 7b9b3cf commit c2513eb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

subsys/bluetooth/controller/ll_sw/ull_conn.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -637,8 +637,7 @@ uint8_t ll_phy_req_send(uint16_t handle, uint8_t tx, uint8_t flags, uint8_t rx)
637637
return BT_HCI_ERR_UNSUPP_REMOTE_FEATURE;
638638
}
639639

640-
if ((conn->llcp_req != conn->llcp_ack) ||
641-
(conn->llcp_phy.req != conn->llcp_phy.ack)) {
640+
if (conn->llcp_phy.req != conn->llcp_phy.ack) {
642641
return BT_HCI_ERR_CMD_DISALLOWED;
643642
}
644643

0 commit comments

Comments
 (0)