Commit 0cea043b authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] Reformat __xchg().

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent a206f6a7
...@@ -286,10 +286,10 @@ extern void __xchg_called_with_bad_pointer(void); ...@@ -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) static inline unsigned long __xchg(unsigned long x, volatile void * ptr, int size)
{ {
switch (size) { switch (size) {
case 4: case 4:
return __xchg_u32(ptr, x); return __xchg_u32(ptr, x);
case 8: case 8:
return __xchg_u64(ptr, x); return __xchg_u64(ptr, x);
} }
__xchg_called_with_bad_pointer(); __xchg_called_with_bad_pointer();
return x; return x;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment