fix(hal): Fix typo in hal layer for Key Manger

This also fixes type in attribute added in esp_attr
This commit is contained in:
Aditya Patwardhan
2023-12-11 13:36:12 +05:30
parent ece73357ca
commit c0ea892aa5
6 changed files with 12 additions and 2 deletions
+1 -1
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))