diff options
author | Robin Holt <holt@sgi.com> | 2013-07-08 19:01:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-09 13:33:29 -0400 |
commit | edf2b1394611fef7806d4af72179dc3ac101f275 (patch) | |
tree | 1dfe9b606bc1f72bc46da264b12a277d74e2caf7 /include/linux/reboot.h | |
parent | 972ee83df88a7fd84c228a31b4f9611299898984 (diff) |
reboot: x86: prepare reboot_mode for moving to generic kernel code
Prepare for the moving the parsing of reboot= to the generic kernel code
by making reboot_mode into a more generic form.
Signed-off-by: Robin Holt <holt@sgi.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Miguel Boton <mboton.lkml@gmail.com>
Cc: Russ Anderson <rja@sgi.com>
Cc: Robin Holt <holt@sgi.com>
Cc: Russell King <rmk+kernel@arm.linux.org.uk>
Cc: Guan Xuetao <gxt@mprc.pku.edu.cn>
Acked-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/reboot.h')
-rw-r--r-- | include/linux/reboot.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/reboot.h b/include/linux/reboot.h index c6eba210e592..37d56c356a06 100644 --- a/include/linux/reboot.h +++ b/include/linux/reboot.h | |||
@@ -10,6 +10,11 @@ | |||
10 | #define SYS_HALT 0x0002 /* Notify of system halt */ | 10 | #define SYS_HALT 0x0002 /* Notify of system halt */ |
11 | #define SYS_POWER_OFF 0x0003 /* Notify of system power off */ | 11 | #define SYS_POWER_OFF 0x0003 /* Notify of system power off */ |
12 | 12 | ||
13 | enum reboot_mode { | ||
14 | REBOOT_COLD = 0, | ||
15 | REBOOT_WARM, | ||
16 | }; | ||
17 | |||
13 | extern int register_reboot_notifier(struct notifier_block *); | 18 | extern int register_reboot_notifier(struct notifier_block *); |
14 | extern int unregister_reboot_notifier(struct notifier_block *); | 19 | extern int unregister_reboot_notifier(struct notifier_block *); |
15 | 20 | ||