mirror of
https://github.com/apache/nuttx.git
synced 2026-08-15 01:13:29 +00:00
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:
parent
1821352993
commit
0bbb720be2
1 changed files with 2 additions and 1 deletions
|
|
@ -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++;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue