summaryrefslogtreecommitdiff
path: root/include/asm-mips/system.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2006-03-03 09:42:05 +0000
committerRalf Baechle <ralf@linux-mips.org>2006-03-21 13:27:47 +0000
commit0cea043b56443aef8a77539cdd79451f5d55009d (patch)
tree17368d7b32d8025471604101ea4037632c9e578b /include/asm-mips/system.h
parenta206f6a7aa78cfaad1d4519e87d9a54fa2b5cfa6 (diff)
downloadlinux-3.10-0cea043b56443aef8a77539cdd79451f5d55009d.tar.gz
linux-3.10-0cea043b56443aef8a77539cdd79451f5d55009d.tar.bz2
linux-3.10-0cea043b56443aef8a77539cdd79451f5d55009d.zip
[MIPS] Reformat __xchg().
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips/system.h')
-rw-r--r--include/asm-mips/system.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asm-mips/system.h b/include/asm-mips/system.h
index ddae9bae31a..4097fac5ac3 100644
--- a/include/asm-mips/system.h
+++ b/include/asm-mips/system.h
@@ -286,10 +286,10 @@ extern void __xchg_called_with_bad_pointer(void);
static inline unsigned long __xchg(unsigned long x, volatile void * ptr, int size)
{
switch (size) {
- case 4:
- return __xchg_u32(ptr, x);
- case 8:
- return __xchg_u64(ptr, x);
+ case 4:
+ return __xchg_u32(ptr, x);
+ case 8:
+ return __xchg_u64(ptr, x);
}
__xchg_called_with_bad_pointer();
return x;