mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
efi_loader: export efi_convert_pointer()
We need ConvertPointer() to adjust pointers when implementing runtime services within U-Boot. After ExitBootServices() gd is not available anymore. So we should not use EFI_ENTRY() and EFI_EXIT(). Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
@@ -496,15 +496,13 @@ static __efi_runtime efi_status_t EFIAPI efi_convert_pointer_runtime(
|
||||
* @address: pointer to be converted
|
||||
* Return: status code
|
||||
*/
|
||||
static __efi_runtime efi_status_t EFIAPI efi_convert_pointer(
|
||||
efi_uintn_t debug_disposition, void **address)
|
||||
__efi_runtime efi_status_t EFIAPI
|
||||
efi_convert_pointer(efi_uintn_t debug_disposition, void **address)
|
||||
{
|
||||
efi_physical_addr_t addr;
|
||||
efi_uintn_t i;
|
||||
efi_status_t ret = EFI_NOT_FOUND;
|
||||
|
||||
EFI_ENTRY("%zu %p", debug_disposition, address);
|
||||
|
||||
if (!efi_virtmap) {
|
||||
ret = EFI_UNSUPPORTED;
|
||||
goto out;
|
||||
@@ -533,7 +531,7 @@ static __efi_runtime efi_status_t EFIAPI efi_convert_pointer(
|
||||
}
|
||||
|
||||
out:
|
||||
return EFI_EXIT(ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static __efi_runtime void efi_relocate_runtime_table(ulong offset)
|
||||
|
Reference in New Issue
Block a user