aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/slip.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-05-18 01:47:34 -0400
committerDavid S. Miller <davem@davemloft.net>2010-05-18 01:47:34 -0400
commitee289b6440c3b0ccb9459495783e8c299bec6604 (patch)
tree6c3eeae205789e50657fd93853d7f3ce5802810c /drivers/net/slip.c
parent5113fec0984276836cb6f0677f7cb53586ec3451 (diff)
drivers/net: remove useless semicolons
switch and while statements don't need semicolons at end of statement [ Fixup minor conflicts with recent wimax merge... -DaveM ] Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/slip.c')
-rw-r--r--drivers/net/slip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/slip.c b/drivers/net/slip.c
index d92772e992d2..fa434fb8fb7c 100644
--- a/drivers/net/slip.c
+++ b/drivers/net/slip.c
@@ -1269,7 +1269,7 @@ static int sl_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1269 1269
1270 case SIOCGLEASE: 1270 case SIOCGLEASE:
1271 *p = sl->leased; 1271 *p = sl->leased;
1272 }; 1272 }
1273 spin_unlock_bh(&sl->lock); 1273 spin_unlock_bh(&sl->lock);
1274 return 0; 1274 return 0;
1275} 1275}