Skip to content

Commit 38a659d

Browse files
committed
Fix build error with MMU defined.
1 parent 3177b8c commit 38a659d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

hal/filesystem.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,12 @@ void hal_prepare_boot(void)
6262
{
6363
return;
6464
}
65+
66+
#ifdef MMU
67+
void do_boot(const uint32_t *app_offset, const uint32_t* dts_offset)
68+
#else
6569
void do_boot(const uint32_t *app_offset)
70+
#endif
6671
{
6772
(void)app_offset;
6873
}

0 commit comments

Comments
 (0)