Commit f81c6224 authored by Joe Perches's avatar Joe Perches Committed by David S. Miller

net: Remove unnecessary semicolons

Semicolons are not necessary after switch/while/for/if braces
so remove them.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 827d9780
......@@ -568,7 +568,7 @@ static int hard_if_event(struct notifier_block *this,
break;
default:
break;
};
}
hardif_put:
hardif_free_ref(hard_iface);
......
......@@ -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;
}
......
......@@ -626,7 +626,7 @@ rpcauth_refreshcred(struct rpc_task *task)
if (err < 0)
goto out;
cred = task->tk_rqstp->rq_cred;
};
}
dprintk("RPC: %5u refreshing %s cred %p\n",
task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment