From b9708d933f6c9e21e499de62932d7f73b8c64219 Mon Sep 17 00:00:00 2001 From: Armando Date: Thu, 3 Aug 2023 11:05:32 +0800 Subject: [PATCH] fix(soc): fix ecc_mult_struct.h struct size check --- components/soc/esp32p4/include/soc/ecc_mult_struct.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/soc/esp32p4/include/soc/ecc_mult_struct.h b/components/soc/esp32p4/include/soc/ecc_mult_struct.h index 4cb6a8afba..5754a9e3cd 100644 --- a/components/soc/esp32p4/include/soc/ecc_mult_struct.h +++ b/components/soc/esp32p4/include/soc/ecc_mult_struct.h @@ -158,7 +158,7 @@ typedef struct { #ifndef __cplusplus -_Static_assert(sizeof(ecc_mult_dev_t) == 0x160, "Invalid size of ecc_mult_dev_t structure"); +_Static_assert(sizeof(ecc_mult_dev_t) == 0x1C0, "Invalid size of ecc_mult_dev_t structure"); #endif #ifdef __cplusplus