From 71d11181a29620e13db461b8df900d73d2543f12 Mon Sep 17 00:00:00 2001 From: cepetr Date: Thu, 19 Sep 2024 16:55:20 +0200 Subject: [PATCH] fixup! refactor(core/embed): simplify bootutils api --- core/embed/trezorhal/bootargs.h | 2 +- core/embed/trezorhal/bootutils.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/embed/trezorhal/bootargs.h b/core/embed/trezorhal/bootargs.h index 45028e5f98c..1cfc5b97e8c 100644 --- a/core/embed/trezorhal/bootargs.h +++ b/core/embed/trezorhal/bootargs.h @@ -54,4 +54,4 @@ boot_command_t bootargs_get_command(); // Returns the pointer to boot arguments const boot_args_t* bootargs_get_args(); -#endif // TREZORHAL_BOOTUTILS_H +#endif // TREZORHAL_BOOTARGS_H diff --git a/core/embed/trezorhal/bootutils.h b/core/embed/trezorhal/bootutils.h index faa14a507ac..cd1e84dbaa9 100644 --- a/core/embed/trezorhal/bootutils.h +++ b/core/embed/trezorhal/bootutils.h @@ -42,7 +42,7 @@ void __attribute__((noreturn)) reboot_and_upgrade(const uint8_t hash[32]); // Allows the user to see the displayed error message and then // safely shuts down the device (clears secrets, memory, etc.). // -// This function is called when the device eneters an +// This function is called when the device enters an // unrecoverable error state. void __attribute__((noreturn)) secure_shutdown(void);