Removed dead code after reviewer's comments

pull/183/head
Daniele Lacamera 2022-03-23 09:16:56 +01:00 committed by Daniele
parent 7b7282e74d
commit a017e482b9
2 changed files with 1 additions and 2 deletions

View File

@ -64,7 +64,6 @@
#endif
void wolfBoot_start(void);
//void wolfBoot_panic(void);
#if defined(ARCH_ARM) && defined(WOLFBOOT_ARMORED)

View File

@ -91,7 +91,7 @@ void RAMFUNCTION do_boot(const uint32_t *app_offset)
#define AIRCR_VKEY (0x05FA << 16)
#define AIRCR_SYSRESETREQ (1 << 2)
void RAMFUNCTION NAKED arch_reboot(void)
void RAMFUNCTION arch_reboot(void)
{
AIRCR = AIRCR_SYSRESETREQ | AIRCR_VKEY;
while(1)