boards/arm/imxrt: Fix nxstyle warning in imxrt1060-evk/src/imxrt_boot.c

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2021-03-23 15:53:29 +08:00 committed by Alin Jerpelea
parent 1821352993
commit 0bbb720be2

View File

@ -67,7 +67,8 @@ void imxrt_ocram_initialize(void)
for (src = (uint32_t *)(LOCATE_IN_SRC(g_boot_data.start) +
g_boot_data.size),
dest = (uint32_t *)(g_boot_data.start + g_boot_data.size);
dest < (uint32_t *) &_etext; )
dest < (uint32_t *) &_etext;
)
{
*dest++ = *src++;
}