projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
39dd65a
)
efi_loader: support 16 protocols per efi_object
author
Heinrich Schuchardt
<
[email protected]
>
Sat, 26 Aug 2017 22:51:04 +0000
(
00:51
+0200)
committer
Alexander Graf
<
[email protected]
>
Thu, 5 Oct 2017 12:46:48 +0000
(14:46 +0200)
8 protocols per efi_object is insufficient for iPXE.
Signed-off-by: Heinrich Schuchardt <
[email protected]
>
Reviewed-by: Simon Glass <
[email protected]
>
Reviewed-by: Rob Clark <
[email protected]
>
Signed-off-by: Alexander Graf <
[email protected]
>
include/efi_loader.h
patch
|
blob
|
history
diff --git
a/include/efi_loader.h
b/include/efi_loader.h
index 2f081f899658ceca83fa8f0abbf96c5c87f43814..90db7900014621477bb786be19821efef3e599ca 100644
(file)
--- a/
include/efi_loader.h
+++ b/
include/efi_loader.h
@@
-112,8
+112,8
@@
struct efi_handler {
struct efi_object {
/* Every UEFI object is part of a global object list */
struct list_head link;
- /* We support up to
8
"protocols" an object can be accessed through */
- struct efi_handler protocols[
8
];
+ /* We support up to
16
"protocols" an object can be accessed through */
+ struct efi_handler protocols[
16
];
/* The object spawner can either use this for data or as identifier */
void *handle;
};