From 7924d16aefa87ab05c3cffb084e72e0e96718610 Mon Sep 17 00:00:00 2001 From: Carles Cufi Date: Fri, 25 Aug 2017 15:38:47 +0200 Subject: [PATCH] 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 --- subsys/bluetooth/controller/hci/hci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/subsys/bluetooth/controller/hci/hci.c b/subsys/bluetooth/controller/hci/hci.c index 39339a99fdc..1d3e4984018 100644 --- a/subsys/bluetooth/controller/hci/hci.c +++ b/subsys/bluetooth/controller/hci/hci.c @@ -1541,6 +1541,7 @@ static int controller_cmd_handle(u16_t ocf, struct net_buf *cmd, case BT_OCF(BT_HCI_OP_LE_READ_TX_POWER): le_read_tx_power(cmd, evt); + break; default: return -EINVAL;