mirror of
https://xff.cz/git/u-boot/
synced 2025-09-29 14:31:16 +02:00
efi_loader: consistently use efi_status_t in bootefi
Where ulong or unsigned long are used to hold an EFI status code we should consistenly use efi_status_t. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
committed by
Alexander Graf
parent
cd9e18dee0
commit
3eb0841be7
@@ -93,8 +93,8 @@ static void *copy_fdt(void *fdt)
|
|||||||
return new_fdt;
|
return new_fdt;
|
||||||
}
|
}
|
||||||
|
|
||||||
static ulong efi_do_enter(void *image_handle,
|
static efi_status_t efi_do_enter(
|
||||||
struct efi_system_table *st,
|
void *image_handle, struct efi_system_table *st,
|
||||||
asmlinkage ulong (*entry)(void *image_handle,
|
asmlinkage ulong (*entry)(void *image_handle,
|
||||||
struct efi_system_table *st))
|
struct efi_system_table *st))
|
||||||
{
|
{
|
||||||
@@ -107,7 +107,7 @@ static ulong efi_do_enter(void *image_handle,
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_ARM64
|
#ifdef CONFIG_ARM64
|
||||||
static unsigned long efi_run_in_el2(asmlinkage ulong (*entry)(
|
static efi_status_t efi_run_in_el2(asmlinkage ulong (*entry)(
|
||||||
void *image_handle, struct efi_system_table *st),
|
void *image_handle, struct efi_system_table *st),
|
||||||
void *image_handle, struct efi_system_table *st)
|
void *image_handle, struct efi_system_table *st)
|
||||||
{
|
{
|
||||||
@@ -122,7 +122,7 @@ static unsigned long efi_run_in_el2(asmlinkage ulong (*entry)(
|
|||||||
* Load an EFI payload into a newly allocated piece of memory, register all
|
* Load an EFI payload into a newly allocated piece of memory, register all
|
||||||
* EFI objects it would want to access and jump to it.
|
* EFI objects it would want to access and jump to it.
|
||||||
*/
|
*/
|
||||||
static unsigned long do_bootefi_exec(void *efi, void *fdt,
|
static efi_status_t do_bootefi_exec(void *efi, void *fdt,
|
||||||
struct efi_device_path *device_path,
|
struct efi_device_path *device_path,
|
||||||
struct efi_device_path *image_path)
|
struct efi_device_path *image_path)
|
||||||
{
|
{
|
||||||
@@ -278,7 +278,7 @@ static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|||||||
{
|
{
|
||||||
char *saddr, *sfdt;
|
char *saddr, *sfdt;
|
||||||
unsigned long addr, fdt_addr = 0;
|
unsigned long addr, fdt_addr = 0;
|
||||||
unsigned long r;
|
efi_status_t r;
|
||||||
|
|
||||||
if (argc < 2)
|
if (argc < 2)
|
||||||
return CMD_RET_USAGE;
|
return CMD_RET_USAGE;
|
||||||
|
Reference in New Issue
Block a user