]> git.karo-electronics.de Git - linux-beck.git/blobdiff - arch/blackfin/include/asm/spinlock_types.h
locking: Convert raw_rwlock to arch_rwlock
[linux-beck.git] / arch / blackfin / include / asm / spinlock_types.h
index be75762c06100a3b2e19255a855c29dabd99c120..1a33608c958b90fa0bd43aebd019c884389afa41 100644 (file)
 
 typedef struct {
        volatile unsigned int lock;
-} raw_spinlock_t;
+} arch_spinlock_t;
 
-#define __RAW_SPIN_LOCK_UNLOCKED       { 0 }
+#define __ARCH_SPIN_LOCK_UNLOCKED      { 0 }
 
 typedef struct {
        volatile unsigned int lock;
-} raw_rwlock_t;
+} arch_rwlock_t;
 
-#define __RAW_RW_LOCK_UNLOCKED         { RW_LOCK_BIAS }
+#define __ARCH_RW_LOCK_UNLOCKED                { RW_LOCK_BIAS }
 
 #endif