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

seqlocks: trivial remove weird whitespace

Signed-off-by: Daniel Walker <dwalker@mvista.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Daniel Walker and committed by
Linus Torvalds
20f09390 b928ed56

+4 -4
+4 -4
include/linux/seqlock.h
··· 61 61 { 62 62 spin_lock(&sl->lock); 63 63 ++sl->sequence; 64 - smp_wmb(); 65 - } 64 + smp_wmb(); 65 + } 66 66 67 - static inline void write_sequnlock(seqlock_t *sl) 67 + static inline void write_sequnlock(seqlock_t *sl) 68 68 { 69 69 smp_wmb(); 70 70 sl->sequence++; ··· 77 77 78 78 if (ret) { 79 79 ++sl->sequence; 80 - smp_wmb(); 80 + smp_wmb(); 81 81 } 82 82 return ret; 83 83 }