diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-02-06 22:00:22 +0100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2018-04-04 11:00:07 +0200 |
commit | 482fc90c0a93bdab8473bbd4c8d63732ce888bba (patch) | |
tree | 12b17bb3b6981b15b02a1695027e263c26bc10bc /include/efi_api.h | |
parent | b944e4711137a60064ef353a7d5972e59fe66c97 (diff) | |
download | u-boot-482fc90c0a93bdab8473bbd4c8d63732ce888bba.tar.gz |
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.h | 3 |
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 */ |