diff options
author | Thorsten Blum <thorsten.blum@linux.dev> | 2024-12-09 12:08:56 +0100 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2024-12-09 03:54:54 -0800 |
commit | 5055d82bcebfba915b1a10b6abcbfa0212c96f35 (patch) | |
tree | 80933cc3cade887c65b1b13020de75af9ef8d5c6 | |
parent | 99e487db5c15a1630b186571c3734f4e3c751d0a (diff) |
xtensa: Remove zero-length alignment array
Align the whole struct to 16 bytes instead of using a zero-length
alignment array.
Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
Message-Id: <20241209110856.40132-3-thorsten.blum@linux.dev>
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
-rw-r--r-- | arch/xtensa/include/asm/processor.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/xtensa/include/asm/processor.h b/arch/xtensa/include/asm/processor.h index 7ed1a2085bd7..47b5df86ab5c 100644 --- a/arch/xtensa/include/asm/processor.h +++ b/arch/xtensa/include/asm/processor.h @@ -160,9 +160,7 @@ struct thread_struct { struct perf_event *ptrace_bp[XCHAL_NUM_IBREAK]; struct perf_event *ptrace_wp[XCHAL_NUM_DBREAK]; #endif - /* Make structure 16 bytes aligned. */ - int align[0] __attribute__ ((aligned(16))); -}; +} __aligned(16); /* This decides where the kernel will search for a free chunk of vm * space during mmap's. |