aboutsummaryrefslogtreecommitdiff
path: root/include/efi_loader.h
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2018-03-03 15:28:55 +0100
committerAlexander Graf <agraf@suse.de>2018-04-04 11:00:06 +0200
commit80ea9b09900bc35a21468f5422bd36a345ae7eda (patch)
treeba4a0d24b4005a8de15b8bd4d4a1b2b5faf52c36 /include/efi_loader.h
parent7657152bddd131e47390c2b2d6f63d58149d79f1 (diff)
downloadu-boot-80ea9b09900bc35a21468f5422bd36a345ae7eda.zip
u-boot-80ea9b09900bc35a21468f5422bd36a345ae7eda.tar.gz
u-boot-80ea9b09900bc35a21468f5422bd36a345ae7eda.tar.bz2
efi_loader: return efi_status_t from efi_gop_register
All initialization routines should return a status code instead of a boolean. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> [agraf: Convert warnings to debug() prints] Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/efi_loader.h')
-rw-r--r--include/efi_loader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h
index c686cd3..a28a7a1 100644
--- a/include/efi_loader.h
+++ b/include/efi_loader.h
@@ -183,7 +183,7 @@ int efi_disk_create_partitions(efi_handle_t parent, struct blk_desc *desc,
const char *if_typename, int diskid,
const char *pdevname);
/* Called by bootefi to make GOP (graphical) interface available */
-int efi_gop_register(void);
+efi_status_t efi_gop_register(void);
/* Called by bootefi to make the network interface available */
int efi_net_register(void);
/* Called by bootefi to make the watchdog available */