From: Heinrich Schuchardt Date: Sat, 26 Aug 2017 22:51:04 +0000 (+0200) Subject: efi_loader: support 16 protocols per efi_object X-Git-Tag: v2017.11-rc2~55^2~36 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=842a8e434e48e3d4d7a862c4a1676a698aa0954d;p=u-boot efi_loader: support 16 protocols per efi_object 8 protocols per efi_object is insufficient for iPXE. Signed-off-by: Heinrich Schuchardt Reviewed-by: Simon Glass Reviewed-by: Rob Clark Signed-off-by: Alexander Graf --- diff --git a/include/efi_loader.h b/include/efi_loader.h index 2f081f8996..90db790001 100644 --- 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; };