diff options
author | Joe Perches <joe@perches.com> | 2011-06-03 07:51:19 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-06-05 17:33:39 -0400 |
commit | f81c62242045fb7be0a124d8c2540af96d842fad (patch) | |
tree | 7d5f4ed1e991f3b493f9d8cafa97bd10ff73675e | |
parent | 827d978037d7d0bf0860481948c6d26ead10042f (diff) |
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>
-rw-r--r-- | net/batman-adv/hard-interface.c | 2 | ||||
-rw-r--r-- | net/bluetooth/hci_core.c | 4 | ||||
-rw-r--r-- | net/sunrpc/auth.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/net/batman-adv/hard-interface.c b/net/batman-adv/hard-interface.c index a3fbfb5c92f1..57190870d8b8 100644 --- a/net/batman-adv/hard-interface.c +++ b/net/batman-adv/hard-interface.c | |||
@@ -568,7 +568,7 @@ static int hard_if_event(struct notifier_block *this, | |||
568 | break; | 568 | break; |
569 | default: | 569 | default: |
570 | break; | 570 | break; |
571 | }; | 571 | } |
572 | 572 | ||
573 | hardif_put: | 573 | hardif_put: |
574 | hardif_free_ref(hard_iface); | 574 | hardif_free_ref(hard_iface); |
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index 815269b07f20..e937adab3683 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) | |||
1519 | 1519 | ||
1520 | data += (count - rem); | 1520 | data += (count - rem); |
1521 | count = rem; | 1521 | count = rem; |
1522 | }; | 1522 | } |
1523 | 1523 | ||
1524 | return rem; | 1524 | return rem; |
1525 | } | 1525 | } |
@@ -1554,7 +1554,7 @@ int hci_recv_stream_fragment(struct hci_dev *hdev, void *data, int count) | |||
1554 | 1554 | ||
1555 | data += (count - rem); | 1555 | data += (count - rem); |
1556 | count = rem; | 1556 | count = rem; |
1557 | }; | 1557 | } |
1558 | 1558 | ||
1559 | return rem; | 1559 | return rem; |
1560 | } | 1560 | } |
diff --git a/net/sunrpc/auth.c b/net/sunrpc/auth.c index cd6e4aa19dbf..727e506cacda 100644 --- a/net/sunrpc/auth.c +++ b/net/sunrpc/auth.c | |||
@@ -626,7 +626,7 @@ rpcauth_refreshcred(struct rpc_task *task) | |||
626 | if (err < 0) | 626 | if (err < 0) |
627 | goto out; | 627 | goto out; |
628 | cred = task->tk_rqstp->rq_cred; | 628 | cred = task->tk_rqstp->rq_cred; |
629 | }; | 629 | } |
630 | dprintk("RPC: %5u refreshing %s cred %p\n", | 630 | dprintk("RPC: %5u refreshing %s cred %p\n", |
631 | task->tk_pid, cred->cr_auth->au_ops->au_name, cred); | 631 | task->tk_pid, cred->cr_auth->au_ops->au_name, cred); |
632 | 632 | ||