Merge branch 'fix/packed-attribute-definition' into 'release/v5.2'

fix(esp_attr): Remove semiclon from PACKED attribute

See merge request espressif/esp-idf!29021
This commit is contained in:
Mahavir Jain 2024-02-16 15:06:07 +08:00
commit 1181f59158

View File

@ -58,7 +58,7 @@ extern "C" {
#define DMA_ATTR WORD_ALIGNED_ATTR DRAM_ATTR
// Forces the data to be tightly packed with minimum required padding and no extra bytes are added for alignment
#define PACKED_ATTR __attribute__((packed));
#define PACKED_ATTR __attribute__((packed))
// Forces a function to be inlined
#define FORCE_INLINE_ATTR static inline __attribute__((always_inline))