diff options
author | Joe Perches <joe@perches.com> | 2011-06-03 18:45:23 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-06-08 03:06:34 +0400 |
commit | 6cb79b3f3ba2b14590cac02ee13ab7410b6225ed (patch) | |
tree | 2439e8509e3f42fc2c14abbdc23f62e76ce77a0e /arch/sparc/include/asm/system_32.h | |
parent | 9eeb08986f41c0740306f6f56cf04e619e2fe525 (diff) | |
download | linux-6cb79b3f3ba2b14590cac02ee13ab7410b6225ed.tar.xz |
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/include/asm/system_32.h')
-rw-r--r-- | arch/sparc/include/asm/system_32.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/include/asm/system_32.h b/arch/sparc/include/asm/system_32.h index 47a7e862474e..aba16092a81b 100644 --- a/arch/sparc/include/asm/system_32.h +++ b/arch/sparc/include/asm/system_32.h @@ -220,7 +220,7 @@ static inline unsigned long __xchg(unsigned long x, __volatile__ void * ptr, int switch (size) { case 4: return xchg_u32(ptr, x); - }; + } __xchg_called_with_bad_pointer(); return x; } |