common: Move dram_init() declaration to common location
Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
7f641d53bb
commit
0267ba5d86
|
@ -36,7 +36,6 @@ int arch_early_init_r(void);
|
||||||
|
|
||||||
/* board/.../... */
|
/* board/.../... */
|
||||||
int board_init(void);
|
int board_init(void);
|
||||||
int dram_init (void);
|
|
||||||
void dram_init_banksize (void);
|
void dram_init_banksize (void);
|
||||||
|
|
||||||
/* cpu/.../interrupt.c */
|
/* cpu/.../interrupt.c */
|
||||||
|
|
|
@ -22,7 +22,6 @@ int cleanup_before_linux(void);
|
||||||
|
|
||||||
/* board/.../... */
|
/* board/.../... */
|
||||||
int board_init(void);
|
int board_init(void);
|
||||||
int dram_init(void);
|
|
||||||
|
|
||||||
/* cpu/.../interrupt.c */
|
/* cpu/.../interrupt.c */
|
||||||
void reset_timer_masked(void);
|
void reset_timer_masked(void);
|
||||||
|
|
|
@ -17,7 +17,6 @@
|
||||||
|
|
||||||
/* board/.../... */
|
/* board/.../... */
|
||||||
int board_init(void);
|
int board_init(void);
|
||||||
int dram_init(void);
|
|
||||||
|
|
||||||
/* start.c */
|
/* start.c */
|
||||||
int sandbox_early_getopt_check(void);
|
int sandbox_early_getopt_check(void);
|
||||||
|
|
|
@ -26,15 +26,9 @@ unsigned long get_tbclk_mhz(void);
|
||||||
void timer_set_base(uint64_t base);
|
void timer_set_base(uint64_t base);
|
||||||
int pcat_timer_init(void);
|
int pcat_timer_init(void);
|
||||||
|
|
||||||
/* Architecture specific DRAM init */
|
|
||||||
int dram_init(void);
|
|
||||||
|
|
||||||
/* cpu/.../interrupts.c */
|
/* cpu/.../interrupts.c */
|
||||||
int cpu_init_interrupts(void);
|
int cpu_init_interrupts(void);
|
||||||
|
|
||||||
/* board/.../... */
|
|
||||||
int dram_init(void);
|
|
||||||
|
|
||||||
int cleanup_before_linux(void);
|
int cleanup_before_linux(void);
|
||||||
int x86_cleanup_before_linux(void);
|
int x86_cleanup_before_linux(void);
|
||||||
void x86_enable_caches(void);
|
void x86_enable_caches(void);
|
||||||
|
|
|
@ -183,6 +183,7 @@ typedef void (interrupt_handler_t)(void *);
|
||||||
/*
|
/*
|
||||||
* Function Prototypes
|
* Function Prototypes
|
||||||
*/
|
*/
|
||||||
|
int dram_init(void);
|
||||||
|
|
||||||
void hang (void) __attribute__ ((noreturn));
|
void hang (void) __attribute__ ((noreturn));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue