diff options
author | Will Newton <will.newton@linaro.org> | 2014-01-09 09:10:50 +0000 |
---|---|---|
committer | Riku Voipio <riku.voipio@linaro.org> | 2014-01-10 08:51:37 +0200 |
commit | f0116c5458dc3be398ee7ef8daeaa02ba738bdc1 (patch) | |
tree | 14b89b37faf6aa3ef1b37fb4f6dbdf126d76c799 /linux-user/linuxload.c | |
parent | b9d36eb2c7d73875ef44182f18d625f1bc4c7fda (diff) |
linux-user: Remove regs parameter of load_elf_binary and load_flt_binary
The regs parameter is not used anywhere, so remove it.
Signed-off-by: Will Newton <will.newton@linaro.org>
Reviewed-by: Erik de Castro Lopo <erikd@mega-nerd.com>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user/linuxload.c')
-rw-r--r-- | linux-user/linuxload.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux-user/linuxload.c b/linux-user/linuxload.c index a1fe5ed9ae..f2997c2f4b 100644 --- a/linux-user/linuxload.c +++ b/linux-user/linuxload.c @@ -154,13 +154,13 @@ int loader_exec(int fdexec, const char *filename, char **argv, char **envp, && bprm->buf[1] == 'E' && bprm->buf[2] == 'L' && bprm->buf[3] == 'F') { - retval = load_elf_binary(bprm, regs, infop); + retval = load_elf_binary(bprm, infop); #if defined(TARGET_HAS_BFLT) } else if (bprm->buf[0] == 'b' && bprm->buf[1] == 'F' && bprm->buf[2] == 'L' && bprm->buf[3] == 'T') { - retval = load_flt_binary(bprm,regs,infop); + retval = load_flt_binary(bprm, infop); #endif } else { return -ENOEXEC; |