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>
This commit is contained in:
Joe Perches 2011-06-03 11:51:19 +00:00 committed by David S. Miller
parent 827d978037
commit f81c622420
3 changed files with 4 additions and 4 deletions

View file

@ -568,7 +568,7 @@ static int hard_if_event(struct notifier_block *this,
break; break;
default: default:
break; break;
}; }
hardif_put: hardif_put:
hardif_free_ref(hard_iface); hardif_free_ref(hard_iface);

View file

@ -1519,7 +1519,7 @@ int hci_recv_fragment(struct hci_dev *hdev, int type, void *data, int count)
data += (count - rem); data += (count - rem);
count = rem; count = rem;
}; }
return rem; return rem;
} }
@ -1554,7 +1554,7 @@ int hci_recv_stream_fragment(struct hci_dev *hdev, void *data, int count)
data += (count - rem); data += (count - rem);
count = rem; count = rem;
}; }
return rem; return rem;
} }

View file

@ -626,7 +626,7 @@ rpcauth_refreshcred(struct rpc_task *task)
if (err < 0) if (err < 0)
goto out; goto out;
cred = task->tk_rqstp->rq_cred; cred = task->tk_rqstp->rq_cred;
}; }
dprintk("RPC: %5u refreshing %s cred %p\n", dprintk("RPC: %5u refreshing %s cred %p\n",
task->tk_pid, cred->cr_auth->au_ops->au_name, cred); task->tk_pid, cred->cr_auth->au_ops->au_name, cred);