summaryrefslogtreecommitdiff
path: root/include/efi_loader.h
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2018-03-03 15:28:57 +0100
committerAlexander Graf <agraf@suse.de>2018-04-04 11:00:06 +0200
commitd7b181d57d0c7080facce755c4b9ff7a22436a48 (patch)
tree52a139264c2156434c10270b9372808f5307f7fc /include/efi_loader.h
parent075d425d652038e67136db61ace4606fcec89475 (diff)
efi_loader: consistently return efi_status_t efi_watchdog_register
efi_watchdog_register() should always return a status code and not a boolean value. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> 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 d2fadc5c73..48fbe7a214 100644
--- a/include/efi_loader.h
+++ b/include/efi_loader.h
@@ -187,7 +187,7 @@ efi_status_t efi_gop_register(void);
/* Called by bootefi to make the network interface available */
efi_status_t efi_net_register(void);
/* Called by bootefi to make the watchdog available */
-int efi_watchdog_register(void);
+efi_status_t efi_watchdog_register(void);
/* Called by bootefi to make SMBIOS tables available */
efi_status_t efi_smbios_register(void);