summaryrefslogtreecommitdiff
path: root/include/efi_api.h
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2018-02-06 22:00:22 +0100
committerAlexander Graf <agraf@suse.de>2018-04-04 11:00:07 +0200
commit482fc90c0a93bdab8473bbd4c8d63732ce888bba (patch)
tree12b17bb3b6981b15b02a1695027e263c26bc10bc /include/efi_api.h
parentb944e4711137a60064ef353a7d5972e59fe66c97 (diff)
efi_loader: add missing EFI_RESET_PLATFORM_SPECIFIC
EFI_RESET_PLATFORM_SPECIFIC is one of the values that can be used for the EFI service ResetSystem. The missing definition is added. The value has to handled in efi_reset_system(). Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/efi_api.h')
-rw-r--r--include/efi_api.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/efi_api.h b/include/efi_api.h
index 167c44e3a4..28de93a132 100644
--- a/include/efi_api.h
+++ b/include/efi_api.h
@@ -180,7 +180,8 @@ struct efi_boot_services {
enum efi_reset_type {
EFI_RESET_COLD = 0,
EFI_RESET_WARM = 1,
- EFI_RESET_SHUTDOWN = 2
+ EFI_RESET_SHUTDOWN = 2,
+ EFI_RESET_PLATFORM_SPECIFIC = 3,
};
/* EFI Runtime Services table */