Skip to content
Snippets Groups Projects
Commit a24d96e4 authored by Prafulla Wadaskar's avatar Prafulla Wadaskar Committed by Wolfgang Denk
Browse files

arch_misc_init support for ARM architectures


This patch is required for Kirkwood support
may be used by other ARM architectures

Signed-off-by: default avatarPrafulla Wadaskar <prafulla@marvell.com>
parent b2403589
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,7 @@ int cleanup_before_linux(void);
/* cpu/.../arch/cpu.c */
int arch_cpu_init(void);
int arch_misc_init(void);
/* board/.../... */
int board_init(void);
......
......@@ -399,6 +399,10 @@ void start_armboot (void)
console_init_r (); /* fully init console as a device */
#if defined(CONFIG_ARCH_MISC_INIT)
/* miscellaneous arch dependent initialisations */
arch_misc_init ();
#endif
#if defined(CONFIG_MISC_INIT_R)
/* miscellaneous platform dependent initialisations */
misc_init_r ();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment