[PATCH 2/6] image: Add an inline declaration of unmap_sysmem()
Paul HENRYS
paul.henrys_ext at softathome.com
Wed Feb 12 10:31:22 CET 2025
Add an empty inline declaration when compiling tools for a host where
unmap_sysmem() is not defined.
Signed-off-by: Paul HENRYS <paul.henrys_ext at softathome.com>
---
tools/mkimage.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tools/mkimage.h b/tools/mkimage.h
index 15741f250fd..5d6bcc9301a 100644
--- a/tools/mkimage.h
+++ b/tools/mkimage.h
@@ -37,6 +37,10 @@ static inline void *map_sysmem(ulong paddr, unsigned long len)
return (void *)(uintptr_t)paddr;
}
+static inline void unmap_sysmem(const void *vaddr)
+{
+}
+
static inline ulong map_to_sysmem(const void *ptr)
{
return (ulong)(uintptr_t)ptr;
--
2.43.0
More information about the U-Boot
mailing list