aboutsummaryrefslogtreecommitdiffstats
path: root/init/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'init/main.c')
-rw-r--r--init/main.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/init/main.c b/init/main.c
index 9711586aa7c9..535b1d4bd5f4 100644
--- a/init/main.c
+++ b/init/main.c
@@ -541,6 +541,15 @@ void __init __weak thread_info_cache_init(void)
541{ 541{
542} 542}
543 543
544void __init __weak arch_early_irq_init(void)
545{
546}
547
548void __init __weak early_irq_init(void)
549{
550 arch_early_irq_init();
551}
552
544asmlinkage void __init start_kernel(void) 553asmlinkage void __init start_kernel(void)
545{ 554{
546 char * command_line; 555 char * command_line;
@@ -605,6 +614,8 @@ asmlinkage void __init start_kernel(void)
605 sort_main_extable(); 614 sort_main_extable();
606 trap_init(); 615 trap_init();
607 rcu_init(); 616 rcu_init();
617 /* init some links before init_ISA_irqs() */
618 early_irq_init();
608 init_IRQ(); 619 init_IRQ();
609 pidhash_init(); 620 pidhash_init();
610 init_timers(); 621 init_timers();