summaryrefslogtreecommitdiff
path: root/net/bluetooth
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2011-06-03 11:51:19 (GMT)
committerDavid S. Miller <davem@davemloft.net>2011-06-05 21:33:39 (GMT)
commitf81c62242045fb7be0a124d8c2540af96d842fad (patch)
tree7d5f4ed1e991f3b493f9d8cafa97bd10ff73675e /net/bluetooth
parent827d978037d7d0bf0860481948c6d26ead10042f (diff)
downloadlinux-fsl-qoriq-f81c62242045fb7be0a124d8c2540af96d842fad.tar.xz
net: Remove unnecessary semicolons
Semicolons are not necessary after switch/while/for/if braces so remove them. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bluetooth')
-rw-r--r--net/bluetooth/hci_core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
index 815269b..e937ada 100644
--- a/net/bluetooth/hci_core.c
+++ b/net/bluetooth/hci_core.c
@@ -1519,7 +1519,7 @@ int hci_recv_fragment(struct hci_dev *hdev, int type, void *data, int count)
data += (count - rem);
count = rem;
- };
+ }
return rem;
}
@@ -1554,7 +1554,7 @@ int hci_recv_stream_fragment(struct hci_dev *hdev, void *data, int count)
data += (count - rem);
count = rem;
- };
+ }
return rem;
}