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 /arch/arm/mach-bcm283x | |
parent | b944e4711137a60064ef353a7d5972e59fe66c97 (diff) | |
download | u-boot-482fc90c0a93bdab8473bbd4c8d63732ce888bba.tar.gz u-boot-482fc90c0a93bdab8473bbd4c8d63732ce888bba.tar.xz u-boot-482fc90c0a93bdab8473bbd4c8d63732ce888bba.zip |
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 'arch/arm/mach-bcm283x')
-rw-r--r-- | arch/arm/mach-bcm283x/reset.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-bcm283x/reset.c b/arch/arm/mach-bcm283x/reset.c index 5b83fdf43d..aa02d3f9f6 100644 --- a/arch/arm/mach-bcm283x/reset.c +++ b/arch/arm/mach-bcm283x/reset.c @@ -63,6 +63,7 @@ void __efi_runtime EFIAPI efi_reset_system( switch (reset_type) { case EFI_RESET_COLD: case EFI_RESET_WARM: + case EFI_RESET_PLATFORM_SPECIFIC: reset_cpu(0); break; case EFI_RESET_SHUTDOWN: |