summaryrefslogtreecommitdiff
path: root/arch/x86/lib/reloc_x86_64_efi.c
diff options
context:
space:
mode:
authorIvan Gorinov <ivan.gorinov@intel.com>2018-06-29 00:49:46 +0300
committerTom Rini <trini@konsulko.com>2018-07-19 23:31:36 +0300
commit6250098655809b4e149d74bff50af86c6209ce8f (patch)
tree89760497064070d53506fa60fd2b647ced161548 /arch/x86/lib/reloc_x86_64_efi.c
parent960a63973b21d540e2d3d7be229429e06280bacd (diff)
downloadu-boot-6250098655809b4e149d74bff50af86c6209ce8f.tar.xz
x86: Remove unused _relocate arguments
EFI image handle and system table are not used in _relocate(). Signed-off-by: Ivan Gorinov <ivan.gorinov@intel.com>
Diffstat (limited to 'arch/x86/lib/reloc_x86_64_efi.c')
-rw-r--r--arch/x86/lib/reloc_x86_64_efi.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/lib/reloc_x86_64_efi.c b/arch/x86/lib/reloc_x86_64_efi.c
index 34c5b2ed3f..59d6f8d3d3 100644
--- a/arch/x86/lib/reloc_x86_64_efi.c
+++ b/arch/x86/lib/reloc_x86_64_efi.c
@@ -14,8 +14,7 @@
#include <elf.h>
#include <asm/elf.h>
-efi_status_t _relocate(long ldbase, Elf64_Dyn *dyn, efi_handle_t image,
- struct efi_system_table *systab)
+efi_status_t EFIAPI _relocate(long ldbase, Elf64_Dyn *dyn)
{
long relsz = 0, relent = 0;
Elf64_Rel *rel = 0;