projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8278675
)
efi_loader: correct types for EFI_LOADED_IMAGE_PROTOCOL
author
Heinrich Schuchardt
<xypron.glpk@gmx.de>
Tue, 3 Apr 2018 20:29:33 +0000
(22:29 +0200)
committer
Alexander Graf
<agraf@suse.de>
Wed, 4 Apr 2018 09:37:47 +0000
(11:37 +0200)
We should not use void * but specific types for
* device_handle
* file_path
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
include/efi_api.h
patch
|
blob
|
history
diff --git
a/include/efi_api.h
b/include/efi_api.h
index 2be470b23787f6ea7e61b9fe56b1b927ae1d5fb7..f5bb6ec1719f6eea571a3ae854efeb263a737333 100644
(file)
--- a/
include/efi_api.h
+++ b/
include/efi_api.h
@@
-318,8
+318,8
@@
struct efi_loaded_image {
u32 revision;
void *parent_handle;
struct efi_system_table *system_table;
-
void *
device_handle;
-
void
*file_path;
+
efi_handle_t
device_handle;
+
struct efi_device_path
*file_path;
void *reserved;
u32 load_options_size;
void *load_options;