diff options
author | Robin Holt <holt@sgi.com> | 2013-07-08 19:01:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-09 13:33:29 -0400 |
commit | 7b6d864b48d95e6ea1df7df64475b9cb9616dcf9 (patch) | |
tree | bc5b3c1c6021e19e51f7f5afe5fb0fbbaef9f7a3 /arch/arm/mach-ep93xx | |
parent | 16d6d5b00ee75307bab7e4ede9452c97b28f30e2 (diff) |
reboot: arm: change reboot_mode to use enum reboot_mode
Preparing to move the parsing of reboot= to generic kernel code forces
the change in reboot_mode handling to use the enum.
[akpm@linux-foundation.org: fix arch/arm/mach-socfpga/socfpga.c]
Signed-off-by: Robin Holt <holt@sgi.com>
Cc: Russell King <rmk+kernel@arm.linux.org.uk>
Cc: Russ Anderson <rja@sgi.com>
Cc: Robin Holt <holt@sgi.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Guan Xuetao <gxt@mprc.pku.edu.cn>
Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/arm/mach-ep93xx')
-rw-r--r-- | arch/arm/mach-ep93xx/core.c | 3 | ||||
-rw-r--r-- | arch/arm/mach-ep93xx/include/mach/platform.h | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/arch/arm/mach-ep93xx/core.c b/arch/arm/mach-ep93xx/core.c index c49ed3dc1aea..df8612fbbc9c 100644 --- a/arch/arm/mach-ep93xx/core.c +++ b/arch/arm/mach-ep93xx/core.c | |||
@@ -35,6 +35,7 @@ | |||
35 | #include <linux/spi/spi.h> | 35 | #include <linux/spi/spi.h> |
36 | #include <linux/export.h> | 36 | #include <linux/export.h> |
37 | #include <linux/irqchip/arm-vic.h> | 37 | #include <linux/irqchip/arm-vic.h> |
38 | #include <linux/reboot.h> | ||
38 | 39 | ||
39 | #include <mach/hardware.h> | 40 | #include <mach/hardware.h> |
40 | #include <linux/platform_data/video-ep93xx.h> | 41 | #include <linux/platform_data/video-ep93xx.h> |
@@ -921,7 +922,7 @@ void __init ep93xx_init_devices(void) | |||
921 | gpio_led_register_device(-1, &ep93xx_led_data); | 922 | gpio_led_register_device(-1, &ep93xx_led_data); |
922 | } | 923 | } |
923 | 924 | ||
924 | void ep93xx_restart(char mode, const char *cmd) | 925 | void ep93xx_restart(enum reboot_mode mode, const char *cmd) |
925 | { | 926 | { |
926 | /* | 927 | /* |
927 | * Set then clear the SWRST bit to initiate a software reset | 928 | * Set then clear the SWRST bit to initiate a software reset |
diff --git a/arch/arm/mach-ep93xx/include/mach/platform.h b/arch/arm/mach-ep93xx/include/mach/platform.h index a14e1b37beff..e256e0baec2e 100644 --- a/arch/arm/mach-ep93xx/include/mach/platform.h +++ b/arch/arm/mach-ep93xx/include/mach/platform.h | |||
@@ -4,6 +4,8 @@ | |||
4 | 4 | ||
5 | #ifndef __ASSEMBLY__ | 5 | #ifndef __ASSEMBLY__ |
6 | 6 | ||
7 | #include <linux/reboot.h> | ||
8 | |||
7 | struct i2c_gpio_platform_data; | 9 | struct i2c_gpio_platform_data; |
8 | struct i2c_board_info; | 10 | struct i2c_board_info; |
9 | struct spi_board_info; | 11 | struct spi_board_info; |
@@ -55,7 +57,7 @@ void ep93xx_ide_release_gpio(struct platform_device *pdev); | |||
55 | void ep93xx_init_devices(void); | 57 | void ep93xx_init_devices(void); |
56 | extern void ep93xx_timer_init(void); | 58 | extern void ep93xx_timer_init(void); |
57 | 59 | ||
58 | void ep93xx_restart(char, const char *); | 60 | void ep93xx_restart(enum reboot_mode, const char *); |
59 | void ep93xx_init_late(void); | 61 | void ep93xx_init_late(void); |
60 | 62 | ||
61 | #ifdef CONFIG_CRUNCH | 63 | #ifdef CONFIG_CRUNCH |