Remove unused functions

Signed-off-by: Alexey Arbuzov <lexx.vir@gmail.com>
This commit is contained in:
Alexey Arbuzov 2022-04-29 15:35:34 +03:00 committed by Gustavo Henrique Nihei
parent c4b305863a
commit e4fba687d9
1 changed files with 0 additions and 21 deletions

View File

@ -46,9 +46,6 @@
#include "bootutil/image.h"
#include "bootutil/bootutil_public.h"
#include "bootutil/bootutil_log.h"
#ifdef MCUBOOT_ENC_IMAGES
#include "bootutil/enc_key_public.h"
#endif
#include "bootutil/boot_public_hooks.h"
#include "bootutil_priv.h"
@ -167,12 +164,6 @@ boot_copy_done_off(const struct flash_area *fap)
return boot_image_ok_off(fap) - BOOT_MAX_ALIGN;
}
static inline uint32_t
boot_swap_size_off(const struct flash_area *fap)
{
return boot_swap_info_off(fap) - BOOT_MAX_ALIGN;
}
uint32_t
boot_swap_info_off(const struct flash_area *fap)
{
@ -205,18 +196,6 @@ boot_magic_compatible_check(uint8_t tbl_val, uint8_t val)
}
}
#ifdef MCUBOOT_ENC_IMAGES
static inline uint32_t
boot_enc_key_off(const struct flash_area *fap, uint8_t slot)
{
#if MCUBOOT_SWAP_SAVE_ENCTLV
return boot_swap_size_off(fap) - ((slot + 1) * BOOT_ENC_TLV_ALIGN_SIZE);
#else
return boot_swap_size_off(fap) - ((slot + 1) * BOOT_ENC_KEY_ALIGN_SIZE);
#endif
}
#endif
bool bootutil_buffer_is_erased(const struct flash_area *area,
const void *buffer, size_t len)
{