From: Heiko Carstens Date: Mon, 22 Mar 2021 12:44:47 +0000 (+0100) Subject: s390/spinlock: remove align attribute from arch_spinlock_t X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=263df6e485445aff8f6189c1913b916b8c7f4f1d;p=linux.git 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 --- diff --git a/arch/s390/include/asm/spinlock_types.h b/arch/s390/include/asm/spinlock_types.h index cfed272e4fd59..a2bbfd7df85fa 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, }