mirror of https://github.com/wolfSSL/wolfBoot.git
Fix typos
parent
a195efe608
commit
07ef67bd3e
|
@ -177,7 +177,7 @@ static const uint32_t wolfboot_magic_trail = WOLFBOOT_MAGIC_TRAIL;
|
|||
|
||||
#include <stddef.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 uint8_t get_base_offset(uint8_t *base, uintptr_t off)
|
||||
{
|
||||
|
|
|
@ -79,7 +79,7 @@ extern uint8_t _end_wb[];
|
|||
*/
|
||||
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 wolfBoot_image os_image;
|
||||
int pA_ver = 0, pB_ver = 0;
|
||||
|
|
Loading…
Reference in New Issue