Replace all __attribute__((aligned(x)) with aligned_data(x)

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao
2021-07-27 18:19:12 +08:00
committed by Gustavo Henrique Nihei
parent 9c3799f130
commit b3f9ffbe72
71 changed files with 188 additions and 192 deletions

View File

@@ -53,7 +53,7 @@
/* Address of the IDLE thread */
uint8_t g_idlestack[CONFIG_IDLETHREAD_STACKSIZE]
__attribute__((aligned(16), section(".noinit")));
aligned_data(16) __attribute__((section(".noinit")));
uint32_t g_idle_topstack = ESP32C3_IDLESTACK_TOP;
/****************************************************************************