diff options
author | Heiko Carstens <hca@linux.ibm.com> | 2021-03-22 13:44:47 +0100 |
---|---|---|
committer | Heiko Carstens <hca@linux.ibm.com> | 2021-03-28 20:23:54 +0200 |
commit | 263df6e485445aff8f6189c1913b916b8c7f4f1d (patch) | |
tree | 560ea9189ae46edbb826fdb454871a820bb56ced /arch/s390 | |
parent | 84fa3962d5ff8cd23e85bea242cb32f27d879608 (diff) | |
download | linux-stable-263df6e485445aff8f6189c1913b916b8c7f4f1d.tar.gz linux-stable-263df6e485445aff8f6189c1913b916b8c7f4f1d.tar.bz2 linux-stable-263df6e485445aff8f6189c1913b916b8c7f4f1d.zip |
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>
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/include/asm/spinlock_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/include/asm/spinlock_types.h b/arch/s390/include/asm/spinlock_types.h index cfed272e4fd5..a2bbfd7df85f 100644 --- a/arch/s390/include/asm/spinlock_types.h +++ b/arch/s390/include/asm/spinlock_types.h @@ -8,7 +8,7 @@ typedef struct { int lock; -} __attribute__ ((aligned (4))) arch_spinlock_t; +} arch_spinlock_t; #define __ARCH_SPIN_LOCK_UNLOCKED { .lock = 0, } |