arm64: Remove __packed from ESF

Packing the ESF is actually wrong, remove the attribute.

Signed-off-by: Carlo Caione <ccaione@baylibre.com>
This commit is contained in:
Carlo Caione 2023-07-13 17:52:09 +02:00 committed by Carles Cufí
commit 44dd4114db

View file

@ -53,7 +53,7 @@ struct __esf {
#ifdef CONFIG_ARM64_SAFE_EXCEPTION_STACK #ifdef CONFIG_ARM64_SAFE_EXCEPTION_STACK
uint64_t sp; uint64_t sp;
#endif #endif
} __packed __aligned(16); } __aligned(16);
typedef struct __esf z_arch_esf_t; typedef struct __esf z_arch_esf_t;