summaryrefslogtreecommitdiffstats
path: root/net/socket.c
diff options
context:
space:
mode:
authorJoe Perches2010-05-14 12:58:26 +0200
committerDavid S. Miller2010-05-18 02:44:35 +0200
commitccbd6a5a4f76e821ed36f69fdaf59817c3a7f18e (patch)
tree9fd681809e588913cc312f63ae0e701f18599afc /net/socket.c
parentX25: Remove bkl in sockopts (diff)
downloadkernel-qcow2-linux-ccbd6a5a4f76e821ed36f69fdaf59817c3a7f18e.tar.gz
kernel-qcow2-linux-ccbd6a5a4f76e821ed36f69fdaf59817c3a7f18e.tar.xz
kernel-qcow2-linux-ccbd6a5a4f76e821ed36f69fdaf59817c3a7f18e.zip
net: Remove unnecessary semicolons after switch statements
Also added an explicit break; to avoid a fallthrough in net/ipv4/tcp_input.c Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/socket.c')
-rw-r--r--net/socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/socket.c b/net/socket.c
index dae8c6b84a09..f9f7d0872cac 100644
--- a/net/socket.c
+++ b/net/socket.c
@@ -2615,7 +2615,7 @@ static int bond_ioctl(struct net *net, unsigned int cmd,
return dev_ioctl(net, cmd, uifr);
default:
return -EINVAL;
- };
+ }
}
static int siocdevprivate_ioctl(struct net *net, unsigned int cmd,