]> git.sur5r.net Git - u-boot/commitdiff
efi_loader: move guidcmp to header
authorRob Clark <robdclark@gmail.com>
Mon, 24 Jul 2017 11:59:11 +0000 (07:59 -0400)
committerAlexander Graf <agraf@suse.de>
Mon, 24 Jul 2017 12:38:21 +0000 (14:38 +0200)
Want to re-use this for file protocol, which I'm working on.

Signed-off-by: Rob Clark <robdclark@gmail.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
include/efi_loader.h
lib/efi_loader/efi_boottime.c

index 2abb6b87e17acbbfcc8449d41c00664182c5a838..7818e1cebb4d4298b337f0cd3e474dd0626fa944 100644 (file)
@@ -168,6 +168,11 @@ static inline void ascii2unicode(u16 *unicode, const char *ascii)
                *(unicode++) = *(ascii++);
 }
 
+static inline int guidcmp(const efi_guid_t *g1, const efi_guid_t *g2)
+{
+       return memcmp(g1, g2, sizeof(efi_guid_t));
+}
+
 /*
  * Use these to indicate that your code / data should go into the EFI runtime
  * section and thus still be available when the OS is running
index a89a62940624e7021562c2b8212b65c63d0fde21..e09f9dac5c875576af6efef14db1da30202a7026 100644 (file)
@@ -132,11 +132,6 @@ static efi_status_t efi_unsupported(const char *funcname)
        return EFI_EXIT(EFI_UNSUPPORTED);
 }
 
-static int guidcmp(const efi_guid_t *g1, const efi_guid_t *g2)
-{
-       return memcmp(g1, g2, sizeof(efi_guid_t));
-}
-
 static unsigned long EFIAPI efi_raise_tpl(UINTN new_tpl)
 {
        EFI_ENTRY("0x%zx", new_tpl);