From c5e2442033d9afe67b1913e192b0eafa74eef856 Mon Sep 17 00:00:00 2001 From: Joel Stanley Date: Mon, 20 Jun 2022 16:31:17 +0930 Subject: image: fit: Use stack allocation macro The documentation above the DEFINE_ALIGN_BUFFER says it's for use outside functions, but we're inside one. Instead use ALLOC_CACHE_ALIGN_BUFFER, the stack based macro, which also includes the cache alignment. Fixes: b583348ca8c8 ("image: fit: Align hash output buffers") Signed-off-by: Joel Stanley Tested-by: Chia-Wei Wang Reviewed-by: Sean Anderson --- tools/mkimage.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/mkimage.h b/tools/mkimage.h index 7652c8b001c..f5ca65e2edf 100644 --- a/tools/mkimage.h +++ b/tools/mkimage.h @@ -41,8 +41,7 @@ static inline ulong map_to_sysmem(void *ptr) return (ulong)(uintptr_t)ptr; } -#define ARCH_DMA_MINALIGN 1 -#define DEFINE_ALIGN_BUFFER(type, name, size, alugn) type name[size] +#define ALLOC_CACHE_ALIGN_BUFFER(type, name, size) type name[size] #define MKIMAGE_TMPFILE_SUFFIX ".tmp" #define MKIMAGE_MAX_TMPFILE_LEN 256 -- cgit v1.3.1