diff options
Diffstat (limited to 'arch/arm/kernel/setup.c')
-rw-r--r-- | arch/arm/kernel/setup.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index 1b3096dfb964..e15d83bb4ea3 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c | |||
@@ -801,6 +801,14 @@ static int __init customize_machine(void) | |||
801 | } | 801 | } |
802 | arch_initcall(customize_machine); | 802 | arch_initcall(customize_machine); |
803 | 803 | ||
804 | static int __init init_machine_late(void) | ||
805 | { | ||
806 | if (machine_desc->init_late) | ||
807 | machine_desc->init_late(); | ||
808 | return 0; | ||
809 | } | ||
810 | late_initcall(init_machine_late); | ||
811 | |||
804 | #ifdef CONFIG_KEXEC | 812 | #ifdef CONFIG_KEXEC |
805 | static inline unsigned long long get_total_mem(void) | 813 | static inline unsigned long long get_total_mem(void) |
806 | { | 814 | { |