Commit 263df6e4 authored by Heiko Carstens's avatar Heiko Carstens

s390/spinlock: remove align attribute from arch_spinlock_t

No need to add an align attribute for an integer.
The alignment is correct anyway.
Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
parent 84fa3962
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
typedef struct { typedef struct {
int lock; int lock;
} __attribute__ ((aligned (4))) arch_spinlock_t; } arch_spinlock_t;
#define __ARCH_SPIN_LOCK_UNLOCKED { .lock = 0, } #define __ARCH_SPIN_LOCK_UNLOCKED { .lock = 0, }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment