diff options
Diffstat (limited to 'arch/arm/mach-s5pc100')
-rw-r--r-- | arch/arm/mach-s5pc100/common.c | 5 | ||||
-rw-r--r-- | arch/arm/mach-s5pc100/common.h | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/arch/arm/mach-s5pc100/common.c b/arch/arm/mach-s5pc100/common.c index 511031564d35..4bdfecf6d024 100644 --- a/arch/arm/mach-s5pc100/common.c +++ b/arch/arm/mach-s5pc100/common.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <linux/serial_core.h> | 24 | #include <linux/serial_core.h> |
25 | #include <linux/platform_device.h> | 25 | #include <linux/platform_device.h> |
26 | #include <linux/sched.h> | 26 | #include <linux/sched.h> |
27 | #include <linux/reboot.h> | ||
27 | 28 | ||
28 | #include <asm/irq.h> | 29 | #include <asm/irq.h> |
29 | #include <asm/proc-fns.h> | 30 | #include <asm/proc-fns.h> |
@@ -217,9 +218,9 @@ void __init s5pc100_init_uarts(struct s3c2410_uartcfg *cfg, int no) | |||
217 | s3c24xx_init_uartdevs("s3c6400-uart", s5p_uart_resources, cfg, no); | 218 | s3c24xx_init_uartdevs("s3c6400-uart", s5p_uart_resources, cfg, no); |
218 | } | 219 | } |
219 | 220 | ||
220 | void s5pc100_restart(char mode, const char *cmd) | 221 | void s5pc100_restart(enum reboot_mode mode, const char *cmd) |
221 | { | 222 | { |
222 | if (mode != 's') | 223 | if (mode != REBOOT_SOFT) |
223 | samsung_wdt_reset(); | 224 | samsung_wdt_reset(); |
224 | 225 | ||
225 | soft_restart(0); | 226 | soft_restart(0); |
diff --git a/arch/arm/mach-s5pc100/common.h b/arch/arm/mach-s5pc100/common.h index c41f912e9e1f..08d782d65d7b 100644 --- a/arch/arm/mach-s5pc100/common.h +++ b/arch/arm/mach-s5pc100/common.h | |||
@@ -12,13 +12,15 @@ | |||
12 | #ifndef __ARCH_ARM_MACH_S5PC100_COMMON_H | 12 | #ifndef __ARCH_ARM_MACH_S5PC100_COMMON_H |
13 | #define __ARCH_ARM_MACH_S5PC100_COMMON_H | 13 | #define __ARCH_ARM_MACH_S5PC100_COMMON_H |
14 | 14 | ||
15 | #include <linux/reboot.h> | ||
16 | |||
15 | void s5pc100_init_io(struct map_desc *mach_desc, int size); | 17 | void s5pc100_init_io(struct map_desc *mach_desc, int size); |
16 | void s5pc100_init_irq(void); | 18 | void s5pc100_init_irq(void); |
17 | 19 | ||
18 | void s5pc100_register_clocks(void); | 20 | void s5pc100_register_clocks(void); |
19 | void s5pc100_setup_clocks(void); | 21 | void s5pc100_setup_clocks(void); |
20 | 22 | ||
21 | void s5pc100_restart(char mode, const char *cmd); | 23 | void s5pc100_restart(enum reboot_mode mode, const char *cmd); |
22 | 24 | ||
23 | extern int s5pc100_init(void); | 25 | extern int s5pc100_init(void); |
24 | extern void s5pc100_map_io(void); | 26 | extern void s5pc100_map_io(void); |