mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 22:20:45 +00:00
efi_loader: system table setup
When setting up the system table avoid superfluous void * conversions. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
21b6b540d6
commit
3c783bfbfb
1 changed files with 5 additions and 5 deletions
|
@ -3620,11 +3620,11 @@ struct efi_system_table __efi_runtime_data systab = {
|
|||
},
|
||||
.fw_vendor = firmware_vendor,
|
||||
.fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8,
|
||||
.con_in = (void *)&efi_con_in,
|
||||
.con_out = (void *)&efi_con_out,
|
||||
.std_err = (void *)&efi_con_out,
|
||||
.runtime = (void *)&efi_runtime_services,
|
||||
.boottime = (void *)&efi_boot_services,
|
||||
.con_in = &efi_con_in,
|
||||
.con_out = &efi_con_out,
|
||||
.std_err = &efi_con_out,
|
||||
.runtime = &efi_runtime_services,
|
||||
.boottime = &efi_boot_services,
|
||||
.nr_tables = 0,
|
||||
.tables = NULL,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue