This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / include / asm-ppc / spinlock.h
index 3e3c2a5..3ceaf16 100644 (file)
@@ -27,6 +27,7 @@ typedef struct {
 #define spin_lock_init(x)      do { *(x) = SPIN_LOCK_UNLOCKED; } while(0)
 #define spin_is_locked(x)      ((x)->lock != 0)
 #define spin_unlock_wait(x)    do { barrier(); } while(spin_is_locked(x))
+#define _raw_spin_lock_flags(lock, flags) _raw_spin_lock(lock)
 
 #ifndef CONFIG_DEBUG_SPINLOCK