
24 Dec
2019
24 Dec
'19
4:54 p.m.
Add guidcpy function to copy the source guid to the destination guid.
Signed-off-by: Sughosh Ganu sughosh.ganu@linaro.org --- include/efi_loader.h | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/include/efi_loader.h b/include/efi_loader.h index 16a1b25..bec7873 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -17,6 +17,11 @@ static inline int guidcmp(const void *g1, const void *g2) return memcmp(g1, g2, sizeof(efi_guid_t)); }
+static inline void *guidcpy(efi_guid_t *dst, const efi_guid_t *src) +{ + return memcpy(dst, src, sizeof(*dst)); +} + /* No need for efi loader support in SPL */ #if CONFIG_IS_ENABLED(EFI_LOADER)
--
2.7.4