Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[MIPS] Reformat __xchg(). Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

+4 -4
+4 -4
include/asm-mips/system.h
··· 286 286 static inline unsigned long __xchg(unsigned long x, volatile void * ptr, int size) 287 287 { 288 288 switch (size) { 289 - case 4: 290 - return __xchg_u32(ptr, x); 291 - case 8: 292 - return __xchg_u64(ptr, x); 289 + case 4: 290 + return __xchg_u32(ptr, x); 291 + case 8: 292 + return __xchg_u64(ptr, x); 293 293 } 294 294 __xchg_called_with_bad_pointer(); 295 295 return x;