mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
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:
parent
ac415a5720
commit
5c6db120fc
18 changed files with 36 additions and 65 deletions
|
@ -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) || \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue