Signed-Off-By: Daniel Walker <[EMAIL PROTECTED]>

---
 include/linux/seqlock.h |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Index: linux-2.6.20/include/linux/seqlock.h
===================================================================
--- linux-2.6.20.orig/include/linux/seqlock.h
+++ linux-2.6.20/include/linux/seqlock.h
@@ -61,10 +61,10 @@ static inline void write_seqlock(seqlock
 {
        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++;
@@ -77,7 +77,7 @@ static inline int write_tryseqlock(seqlo
 
        if (ret) {
                ++sl->sequence;
-               smp_wmb();                      
+               smp_wmb();
        }
        return ret;
 }
-- 

-- 
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to