diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2012-04-25 22:24:44 +0800 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2012-05-03 23:09:24 +0800 |
commit | 90de41375ccf8373c0a39d04547f3e3c65d90ec0 (patch) | |
tree | d44e023054745ba4d89aba9e95c721528fef890a /arch/arm/include/asm/mach | |
parent | 66f75a5d028beaf67c931435fdc3e7823125730c (diff) | |
download | linux-3.10-90de41375ccf8373c0a39d04547f3e3c65d90ec0.tar.gz linux-3.10-90de41375ccf8373c0a39d04547f3e3c65d90ec0.tar.bz2 linux-3.10-90de41375ccf8373c0a39d04547f3e3c65d90ec0.zip |
ARM: provide a late_initcall hook for platform initialization
This allows platforms to set up things that need to be done at
late_initcall time.
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Tested-by: Robert Lee <rob.lee@linaro.org>
Tested-by: Stephen Warren <swarren@wwwdotorg.org>
Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/include/asm/mach')
-rw-r--r-- | arch/arm/include/asm/mach/arch.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/include/asm/mach/arch.h b/arch/arm/include/asm/mach/arch.h index d7692cafde7..0b1c94b8c65 100644 --- a/arch/arm/include/asm/mach/arch.h +++ b/arch/arm/include/asm/mach/arch.h @@ -43,6 +43,7 @@ struct machine_desc { void (*init_irq)(void); struct sys_timer *timer; /* system tick timer */ void (*init_machine)(void); + void (*init_late)(void); #ifdef CONFIG_MULTI_IRQ_HANDLER void (*handle_irq)(struct pt_regs *); #endif |