diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-11-04 11:05:24 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-11-10 17:30:01 -0500 |
commit | a528721da08a793e0cec6ef6281d404eddd6e27b (patch) | |
tree | 909557c79b69093c6aaa3244a1c0181e419a5158 /arch/arm/include | |
parent | 1ea6b8f48918282bdca0b32a34095504ee65bab5 (diff) |
ARM: restart: add restart hook to machine_desc record
Add a restart hook to the machine_desc record so we don't have to
populate all platforms with init_early methods to initialize the
arm_pm_restart function pointer.
Acked-by: Nicolas Pitre <nico@linaro.org>
Acked-by: Will Deacon <will.deacon@arm.com>
Acked-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/include')
-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 7d19425dd496..8aa397a5ea72 100644 --- a/arch/arm/include/asm/mach/arch.h +++ b/arch/arm/include/asm/mach/arch.h | |||
@@ -45,6 +45,7 @@ struct machine_desc { | |||
45 | #ifdef CONFIG_MULTI_IRQ_HANDLER | 45 | #ifdef CONFIG_MULTI_IRQ_HANDLER |
46 | void (*handle_irq)(struct pt_regs *); | 46 | void (*handle_irq)(struct pt_regs *); |
47 | #endif | 47 | #endif |
48 | void (*restart)(char, const char *); | ||
48 | }; | 49 | }; |
49 | 50 | ||
50 | /* | 51 | /* |