Skip to content

Commit

Permalink
seqlocks: trivial remove weird whitespace
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Walker <dwalker@mvista.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Daniel Walker authored and Linus Torvalds committed Apr 27, 2007
1 parent b928ed5 commit 20f0939
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/linux/seqlock.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ static inline void write_seqlock(seqlock_t *sl)
{
spin_lock(&sl->lock);
++sl->sequence;
smp_wmb();
}
smp_wmb();
}

static inline void write_sequnlock(seqlock_t *sl)
static inline void write_sequnlock(seqlock_t *sl)
{
smp_wmb();
sl->sequence++;
Expand All @@ -77,7 +77,7 @@ static inline int write_tryseqlock(seqlock_t *sl)

if (ret) {
++sl->sequence;
smp_wmb();
smp_wmb();
}
return ret;
}
Expand Down

0 comments on commit 20f0939

Please sign in to comment.