diff options
author | Andrei Emeltchenko <andrei.emeltchenko@intel.com> | 2012-07-09 06:57:18 -0400 |
---|---|---|
committer | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2012-07-09 08:45:10 -0400 |
commit | 2c2453f3e46139b86c1e5b0fbd821823b04e4ada (patch) | |
tree | 4a5a05752a64e1f447437ff68a01c5c94e27f544 /drivers/bluetooth/btmrvl_sdio.c | |
parent | ce2be9acff7f71b94e3d68e08df3f1592cae05a3 (diff) |
Bluetooth: btmrvl: trivial style fixes
Patch shortens locals scope and adds missing braces. This is a diff
between v1 which was applied and v2 of patch "Bluetooth: btmrvl: Do
not send vendor events to bluetooth stack".
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Diffstat (limited to 'drivers/bluetooth/btmrvl_sdio.c')
-rw-r--r-- | drivers/bluetooth/btmrvl_sdio.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/bluetooth/btmrvl_sdio.c b/drivers/bluetooth/btmrvl_sdio.c index cf7588edba0d..6a9e9717d3ab 100644 --- a/drivers/bluetooth/btmrvl_sdio.c +++ b/drivers/bluetooth/btmrvl_sdio.c | |||
@@ -568,8 +568,9 @@ static int btmrvl_sdio_card_to_host(struct btmrvl_private *priv) | |||
568 | if (type == HCI_EVENT_PKT) { | 568 | if (type == HCI_EVENT_PKT) { |
569 | if (btmrvl_check_evtpkt(priv, skb)) | 569 | if (btmrvl_check_evtpkt(priv, skb)) |
570 | hci_recv_frame(skb); | 570 | hci_recv_frame(skb); |
571 | } else | 571 | } else { |
572 | hci_recv_frame(skb); | 572 | hci_recv_frame(skb); |
573 | } | ||
573 | 574 | ||
574 | hdev->stat.byte_rx += buf_len; | 575 | hdev->stat.byte_rx += buf_len; |
575 | break; | 576 | break; |