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: Heiko Carstens <hca@linux.ibm.com>
This commit is contained in:
Heiko Carstens 2021-03-22 13:44:47 +01:00
parent 84fa3962d5
commit 263df6e485
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
typedef struct {
int lock;
} __attribute__ ((aligned (4))) arch_spinlock_t;
} arch_spinlock_t;
#define __ARCH_SPIN_LOCK_UNLOCKED { .lock = 0, }