X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Fasm-s390%2Fspinlock_types.h;h=654abc40de04a7b7729e3802b9d9b86244982da2;hb=233607dbbc823caf685e778cabc49fb7f679900b;hp=f79a2216204f523bac490f3d0009dd01a33b307f;hpb=2fc2991175bf77395e6b15fe6b2304d3bf72da40;p=linux-2.6 diff --git a/include/asm-s390/spinlock_types.h b/include/asm-s390/spinlock_types.h index f79a221620..654abc40de 100644 --- a/include/asm-s390/spinlock_types.h +++ b/include/asm-s390/spinlock_types.h @@ -6,16 +6,15 @@ #endif typedef struct { - volatile unsigned int lock; + volatile unsigned int owner_cpu; } __attribute__ ((aligned (4))) raw_spinlock_t; #define __RAW_SPIN_LOCK_UNLOCKED { 0 } typedef struct { volatile unsigned int lock; - volatile unsigned int owner_pc; } raw_rwlock_t; -#define __RAW_RW_LOCK_UNLOCKED { 0, 0 } +#define __RAW_RW_LOCK_UNLOCKED { 0 } #endif