From 8c3e39e88bc3e656dadf9875193a78c9ab752a53 Mon Sep 17 00:00:00 2001 From: Lars-Ove Karlsson Date: Tue, 27 May 2025 13:40:02 +0200 Subject: [PATCH] modules: mbedtls: Fix IAR __packed problem in mbedtls Since __packed is a reserved keyword for the IAR compilers, and Zephyr defines it attribute(__packed__), some typedef constructs in mbedtls does not work with attribute(packed), only with the keyword packed. This fix checks if __packed is a macro and temporary undefines it so the typedefs works correctly. Signed-off-by: Lars-Ove Karlsson --- west.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/west.yml b/west.yml index 18a3a8a5ef337..ff26387e55683 100644 --- a/west.yml +++ b/west.yml @@ -300,7 +300,7 @@ manifest: revision: 1ed1ddd881c3784049a92bb9fe37c38c6c74d998 path: modules/lib/gui/lvgl - name: mbedtls - revision: 5f889934359deccf421554c7045a8381ef75298f + revision: pull/72/head path: modules/crypto/mbedtls groups: - crypto