arm: Remove unused relocate_code() parameters

Commit e05e5de7fa made the 2 1st parameters of
ARM's relocate_code() useless since it moved the code handling them to crt0.S.
So, drop these parameters.

Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
This commit is contained in:
Benoît Thébaudeau 2013-04-11 09:35:53 +00:00 committed by Albert ARIBAUD
parent ac415a5720
commit 5c6db120fc
18 changed files with 36 additions and 65 deletions

View file

@ -530,11 +530,11 @@ int dcache_status (void);
void dcache_enable (void);
void dcache_disable(void);
void mmu_disable(void);
void relocate_code(ulong, gd_t *, ulong)
#if !defined(CONFIG_ARM)
__attribute__ ((noreturn))
#if defined(CONFIG_ARM)
void relocate_code(ulong);
#else
void relocate_code(ulong, gd_t *, ulong) __attribute__ ((noreturn));
#endif
;
ulong get_endaddr (void);
void trap_init (ulong);
#if defined (CONFIG_4xx) || \