Skip to content

Commit 7924d16

Browse files
committed
Bluetooth: controller: Fix broken switch statement
Add a missing break that was forgotten when we introduced the Read TX Power command. Signed-off-by: Carles Cufi <[email protected]>
1 parent 87aa621 commit 7924d16

File tree

1 file changed

+1
-0
lines changed
  • subsys/bluetooth/controller/hci

1 file changed

+1
-0
lines changed

subsys/bluetooth/controller/hci/hci.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1541,6 +1541,7 @@ static int controller_cmd_handle(u16_t ocf, struct net_buf *cmd,
15411541

15421542
case BT_OCF(BT_HCI_OP_LE_READ_TX_POWER):
15431543
le_read_tx_power(cmd, evt);
1544+
break;
15441545

15451546
default:
15461547
return -EINVAL;

0 commit comments

Comments
 (0)