summaryrefslogtreecommitdiff
path: root/ldso/ldso/cris
diff options
context:
space:
mode:
authorJoakim Tjernlund <joakim.tjernlund@transmode.se>2004-08-25 15:19:00 +0000
committerJoakim Tjernlund <joakim.tjernlund@transmode.se>2004-08-25 15:19:00 +0000
commitac5506822324b3734549fb5633166af3d5eb9365 (patch)
tree6450383acf55c7aeb84986c40497439953c1b220 /ldso/ldso/cris
parent8e4a1b8a993e8323f39dbc8f66a14ed0319259ad (diff)
Patch from Stefan Allius:
Remove unused function parameter in ldso. Remove echo option '-e' since it is not supported on Solaris.
Diffstat (limited to 'ldso/ldso/cris')
-rw-r--r--ldso/ldso/cris/elfinterp.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/ldso/ldso/cris/elfinterp.c b/ldso/ldso/cris/elfinterp.c
index 6030a6575..0a8835c85 100644
--- a/ldso/ldso/cris/elfinterp.c
+++ b/ldso/ldso/cris/elfinterp.c
@@ -370,26 +370,20 @@ _dl_do_copy_reloc(struct elf_resolve *tpnt, struct dyn_elf *scope, ELF_RELOC *rp
/* External interface to the generic part of the dynamic linker. */
void _dl_parse_lazy_relocation_information(struct dyn_elf *rpnt,
- unsigned long rel_addr, unsigned long rel_size, int type)
+ unsigned long rel_addr, unsigned long rel_size)
{
- /* Keep the compiler happy. */
- (void) type;
(void)_dl_parse(rpnt->dyn, NULL, rel_addr, rel_size, _dl_do_lazy_reloc);
}
int _dl_parse_relocation_information(struct dyn_elf *rpnt,
- unsigned long rel_addr, unsigned long rel_size, int type)
+ unsigned long rel_addr, unsigned long rel_size)
{
- /* Keep the compiler happy. */
- (void) type;
return _dl_parse(rpnt->dyn, rpnt->dyn->symbol_scope, rel_addr, rel_size, _dl_do_reloc);
}
int _dl_parse_copy_information(struct dyn_elf *rpnt,
- unsigned long rel_addr, unsigned long rel_size, int type)
+ unsigned long rel_addr, unsigned long rel_size)
{
- /* Keep the compiler happy. */
- (void) type;
return _dl_parse(rpnt->dyn, rpnt->next, rel_addr, rel_size, _dl_do_copy_reloc);
}