diff options
author | Joe Perches <joe@perches.com> | 2011-06-03 14:45:23 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-06-07 16:06:34 -0700 |
commit | 6cb79b3f3ba2b14590cac02ee13ab7410b6225ed (patch) | |
tree | 2439e8509e3f42fc2c14abbdc23f62e76ce77a0e /arch/sparc/prom/console_32.c | |
parent | 9eeb08986f41c0740306f6f56cf04e619e2fe525 (diff) | |
download | blackbird-op-linux-6cb79b3f3ba2b14590cac02ee13ab7410b6225ed.tar.gz blackbird-op-linux-6cb79b3f3ba2b14590cac02ee13ab7410b6225ed.zip |
sparc: 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>
Diffstat (limited to 'arch/sparc/prom/console_32.c')
-rw-r--r-- | arch/sparc/prom/console_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/prom/console_32.c b/arch/sparc/prom/console_32.c index b05e3db5fa63..a00f47b16c10 100644 --- a/arch/sparc/prom/console_32.c +++ b/arch/sparc/prom/console_32.c @@ -38,7 +38,7 @@ static int prom_nbputchar(const char *buf) break; default: break; - }; + } restore_current(); spin_unlock_irqrestore(&prom_lock, flags); return i; /* Ugh, we could spin forever on unsupported proms ;( */ |