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 ebfac782593f..549f036a5cf8 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c | |||
@@ -800,6 +800,14 @@ static int __init customize_machine(void) | |||
800 | } | 800 | } |
801 | arch_initcall(customize_machine); | 801 | arch_initcall(customize_machine); |
802 | 802 | ||
803 | static int __init init_machine_late(void) | ||
804 | { | ||
805 | if (machine_desc->init_late) | ||
806 | machine_desc->init_late(); | ||
807 | return 0; | ||
808 | } | ||
809 | late_initcall(init_machine_late); | ||
810 | |||
803 | #ifdef CONFIG_KEXEC | 811 | #ifdef CONFIG_KEXEC |
804 | static inline unsigned long long get_total_mem(void) | 812 | static inline unsigned long long get_total_mem(void) |
805 | { | 813 | { |