diff options
author | Joe Perches <joe@perches.com> | 2010-05-18 01:47:34 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-05-18 01:47:34 -0400 |
commit | ee289b6440c3b0ccb9459495783e8c299bec6604 (patch) | |
tree | 6c3eeae205789e50657fd93853d7f3ce5802810c /drivers/net/sunbmac.c | |
parent | 5113fec0984276836cb6f0677f7cb53586ec3451 (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/sunbmac.c')
-rw-r--r-- | drivers/net/sunbmac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/sunbmac.c b/drivers/net/sunbmac.c index 34446b6d9a3c..4591fe9bf0b9 100644 --- a/drivers/net/sunbmac.c +++ b/drivers/net/sunbmac.c | |||
@@ -362,7 +362,7 @@ static void bigmac_tcvr_write(struct bigmac *bp, void __iomem *tregs, | |||
362 | default: | 362 | default: |
363 | printk(KERN_ERR "bigmac_tcvr_read: Whoops, no known transceiver type.\n"); | 363 | printk(KERN_ERR "bigmac_tcvr_read: Whoops, no known transceiver type.\n"); |
364 | return; | 364 | return; |
365 | }; | 365 | } |
366 | 366 | ||
367 | idle_transceiver(tregs); | 367 | idle_transceiver(tregs); |
368 | write_tcvr_bit(bp, tregs, 0); | 368 | write_tcvr_bit(bp, tregs, 0); |
@@ -401,7 +401,7 @@ static unsigned short bigmac_tcvr_read(struct bigmac *bp, | |||
401 | default: | 401 | default: |
402 | printk(KERN_ERR "bigmac_tcvr_read: Whoops, no known transceiver type.\n"); | 402 | printk(KERN_ERR "bigmac_tcvr_read: Whoops, no known transceiver type.\n"); |
403 | return 0xffff; | 403 | return 0xffff; |
404 | }; | 404 | } |
405 | 405 | ||
406 | idle_transceiver(tregs); | 406 | idle_transceiver(tregs); |
407 | write_tcvr_bit(bp, tregs, 0); | 407 | write_tcvr_bit(bp, tregs, 0); |