aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth
diff options
context:
space:
mode:
authormark-yw.chen <mark-yw.chen@mediatek.com>2021-08-06 09:35:16 +0800
committerMarcel Holtmann <marcel@holtmann.org>2021-08-06 14:49:25 +0200
commit146af22649020e6b163482bc66150683ebf893bf (patch)
treee25e1b5dd6d36f183db52f3a47f4b7dcb8fbbac5 /drivers/bluetooth
parentBluetooth: btintel: Combine setting up MSFT extension (diff)
downloadlinux-dev-146af22649020e6b163482bc66150683ebf893bf.tar.xz
linux-dev-146af22649020e6b163482bc66150683ebf893bf.zip
Bluetooth: btusb: Fix fall-through warnings
Fix fall-through warnings: drivers/bluetooth/btusb.c: In function ‘btusb_recv_acl_mtk’: drivers/bluetooth/btusb.c:4033:3: warning: this statement may fall through [-Wimplicit-fallthrough=] 4033 | usb_disable_autosuspend(data->udev); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ drivers/bluetooth/btusb.c:4034:2: note: here 4034 | case 0x05ff: /* Firmware debug logging 1 */ | ^~~~ Signed-off-by: mark-yw.chen <mark-yw.chen@mediatek.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r--drivers/bluetooth/btusb.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index a97af4ef6bc4..488f110e17e2 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -3008,6 +3008,7 @@ static int btusb_recv_acl_mtk(struct hci_dev *hdev, struct sk_buff *skb)
* suspend and thus disable auto-suspend.
*/
usb_disable_autosuspend(data->udev);
+ fallthrough;
case 0x05ff: /* Firmware debug logging 1 */
case 0x05fe: /* Firmware debug logging 2 */
return hci_recv_diag(hdev, skb);