Fix build error with MMU defined.

pull/620/head
David Garske 2025-10-22 12:59:22 -07:00 committed by Daniele Lacamera
parent 2345138a1b
commit c4b1422307
1 changed files with 5 additions and 0 deletions

View File

@ -62,7 +62,12 @@ void hal_prepare_boot(void)
{
return;
}
#ifdef MMU
void do_boot(const uint32_t *app_offset, const uint32_t* dts_offset)
#else
void do_boot(const uint32_t *app_offset)
#endif
{
(void)app_offset;
}