Bluetooth: Fix coding style of switch statement
Change-Id: Ib53a639a48929344609857447c577b9be764fbb0 Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
This commit is contained in:
parent
0b21762db2
commit
d1d2810c8d
@ -665,15 +665,15 @@ static void hci_rx_fiber(void)
|
||||
BT_DBG("buf %p type %u len %u\n", buf, buf->type, buf->len);
|
||||
|
||||
switch (buf->type) {
|
||||
case BT_ACL_IN:
|
||||
hci_acl(buf);
|
||||
break;
|
||||
case BT_EVT:
|
||||
hci_event(buf);
|
||||
break;
|
||||
default:
|
||||
BT_ERR("Unknown buf type %u\n", buf->type);
|
||||
return;
|
||||
case BT_ACL_IN:
|
||||
hci_acl(buf);
|
||||
break;
|
||||
case BT_EVT:
|
||||
hci_event(buf);
|
||||
break;
|
||||
default:
|
||||
BT_ERR("Unknown buf type %u\n", buf->type);
|
||||
return;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user