diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-06-15 14:51:06 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-06-20 22:26:16 +0000 |
commit | 3c783bfbfb8204da644693b2f5d4552b53aff340 (patch) | |
tree | 0ba5686000d697f7ec69250bca0d0c3e5e2c6e24 /lib | |
parent | 21b6b540d607a8731b311ae798918ff8c19f579d (diff) | |
download | u-boot-3c783bfbfb8204da644693b2f5d4552b53aff340.zip u-boot-3c783bfbfb8204da644693b2f5d4552b53aff340.tar.gz u-boot-3c783bfbfb8204da644693b2f5d4552b53aff340.tar.bz2 |
efi_loader: system table setup
When setting up the system table avoid superfluous void * conversions.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/efi_boottime.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index b26291b..d104cc6 100644 --- a/lib/efi_loader/efi_boottime.c +++ b/lib/efi_loader/efi_boottime.c @@ -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, }; |