mirror of
https://xff.cz/git/u-boot/
synced 2025-09-25 04:21:18 +02: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:
committed by
Albert ARIBAUD
parent
ac415a5720
commit
5c6db120fc
@@ -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) || \
|
||||
|
Reference in New Issue
Block a user