[U-Boot] [PATCH v3 1/5] efi_loader: use const for GUIDs in the EFI_FILE_PROTOCOL

Heinrich Schuchardt xypron.glpk at gmx.de
Wed Apr 4 13:42:09 UTC 2018


Use const efi_guid_t* when passing GUIDs.

Signed-off-by: Heinrich Schuchardt <xypron.glpk at gmx.de>
---
v3
	new patch
---
 include/efi_api.h         | 4 ++--
 lib/efi_loader/efi_file.c | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/efi_api.h b/include/efi_api.h
index 396f45eaa8..8af466a6dc 100644
--- a/include/efi_api.h
+++ b/include/efi_api.h
@@ -866,10 +866,10 @@ struct efi_file_handle {
 	efi_status_t (EFIAPI *setpos)(struct efi_file_handle *file,
 			efi_uintn_t pos);
 	efi_status_t (EFIAPI *getinfo)(struct efi_file_handle *file,
-			efi_guid_t *info_type, efi_uintn_t *buffer_size,
+			const efi_guid_t *info_type, efi_uintn_t *buffer_size,
 			void *buffer);
 	efi_status_t (EFIAPI *setinfo)(struct efi_file_handle *file,
-			efi_guid_t *info_type, efi_uintn_t buffer_size,
+			const efi_guid_t *info_type, efi_uintn_t buffer_size,
 			void *buffer);
 	efi_status_t (EFIAPI *flush)(struct efi_file_handle *file);
 };
diff --git a/lib/efi_loader/efi_file.c b/lib/efi_loader/efi_file.c
index 0be0f8b807..2fc77cfb87 100644
--- a/lib/efi_loader/efi_file.c
+++ b/lib/efi_loader/efi_file.c
@@ -429,7 +429,7 @@ error:
 }
 
 static efi_status_t EFIAPI efi_file_getinfo(struct efi_file_handle *file,
-					    efi_guid_t *info_type,
+					    const efi_guid_t *info_type,
 					    efi_uintn_t *buffer_size,
 					    void *buffer)
 {
@@ -481,7 +481,7 @@ error:
 }
 
 static efi_status_t EFIAPI efi_file_setinfo(struct efi_file_handle *file,
-					    efi_guid_t *info_type,
+					    const efi_guid_t *info_type,
 					    efi_uintn_t buffer_size,
 					    void *buffer)
 {
-- 
2.16.3



More information about the U-Boot mailing list