Commit 20f09390 authored by Daniel Walker's avatar Daniel Walker Committed by Linus Torvalds

seqlocks: trivial remove weird whitespace

Signed-off-by: default avatarDaniel Walker <dwalker@mvista.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent b928ed56
...@@ -61,10 +61,10 @@ static inline void write_seqlock(seqlock_t *sl) ...@@ -61,10 +61,10 @@ static inline void write_seqlock(seqlock_t *sl)
{ {
spin_lock(&sl->lock); spin_lock(&sl->lock);
++sl->sequence; ++sl->sequence;
smp_wmb(); smp_wmb();
} }
static inline void write_sequnlock(seqlock_t *sl) static inline void write_sequnlock(seqlock_t *sl)
{ {
smp_wmb(); smp_wmb();
sl->sequence++; sl->sequence++;
...@@ -77,7 +77,7 @@ static inline int write_tryseqlock(seqlock_t *sl) ...@@ -77,7 +77,7 @@ static inline int write_tryseqlock(seqlock_t *sl)
if (ret) { if (ret) {
++sl->sequence; ++sl->sequence;
smp_wmb(); smp_wmb();
} }
return ret; return ret;
} }
......
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