mirror of https://github.com/wolfSSL/wolfBoot.git
Fix build error with MMU defined.
parent
2345138a1b
commit
c4b1422307
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue