Merge tag 'signed-efi-next' of git://github.com/agraf/u-boot
EFI Fixes for 2017.09: - Fix GOP w/o display - Fix LocateHandle - Fix exit return value truncation - Fix missing EFIAPI in efi_locate_handle (for x86)
This commit is contained in:
@@ -33,9 +33,9 @@ const char *__efi_nesting_dec(void);
|
||||
* Exit the u-boot world back to UEFI:
|
||||
*/
|
||||
#define EFI_EXIT(ret) ({ \
|
||||
efi_status_t _r = ret; \
|
||||
typeof(ret) _r = ret; \
|
||||
debug("%sEFI: Exit: %s: %u\n", __efi_nesting_dec(), \
|
||||
__func__, (u32)(_r & ~EFI_ERROR_MASK)); \
|
||||
__func__, (u32)((uintptr_t) _r & ~EFI_ERROR_MASK)); \
|
||||
assert(__efi_exit_check()); \
|
||||
_r; \
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user