Fix typos

pull/548/head
Daniele Lacamera 2025-03-02 00:31:20 +01:00
parent a195efe608
commit 07ef67bd3e
2 changed files with 2 additions and 2 deletions

View File

@ -177,7 +177,7 @@ static const uint32_t wolfboot_magic_trail = WOLFBOOT_MAGIC_TRAIL;
#include <stddef.h> #include <stddef.h>
#include <string.h> #include <string.h>
static uint8_t NVM_CACHE[NVM_CACHE_SIZE] XALIGNED(16) static uint8_t NVM_CACHE[NVM_CACHE_SIZE] XALIGNED(16);
static int nvm_cached_sector = 0; static int nvm_cached_sector = 0;
static uint8_t get_base_offset(uint8_t *base, uintptr_t off) static uint8_t get_base_offset(uint8_t *base, uintptr_t off)
{ {

View File

@ -79,7 +79,7 @@ extern uint8_t _end_wb[];
*/ */
void RAMFUNCTION wolfBoot_start(void) void RAMFUNCTION wolfBoot_start(void)
{ {
uint8_t p_hdr[IMAGE_HEADER_SIZE] XALIGN_STACK(16); uint8_t p_hdr[IMAGE_HEADER_SIZE] XALIGNED_STACK(16);
struct stage2_parameter *stage2_params; struct stage2_parameter *stage2_params;
struct wolfBoot_image os_image; struct wolfBoot_image os_image;
int pA_ver = 0, pB_ver = 0; int pA_ver = 0, pB_ver = 0;