diff options
author | Jan Beulich <jbeulich@novell.com> | 2008-05-12 15:43:38 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-05-25 08:58:30 +0200 |
commit | ebdd561a19d7917ac49fff9c355aa4833c504bf1 (patch) | |
tree | 194a8de1df018804d55d13801f202ef473f40093 /include | |
parent | 4c8ab98249fa3cead320ec0ee4cde9960b951989 (diff) |
x86: constify data in reboot.c
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-x86/reboot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-x86/reboot.h b/include/asm-x86/reboot.h index e63741f1939..206f355786d 100644 --- a/include/asm-x86/reboot.h +++ b/include/asm-x86/reboot.h @@ -14,8 +14,8 @@ struct machine_ops { extern struct machine_ops machine_ops; -void machine_real_restart(unsigned char *code, int length); void native_machine_crash_shutdown(struct pt_regs *regs); void native_machine_shutdown(void); +void machine_real_restart(const unsigned char *code, int length); #endif /* _ASM_REBOOT_H */ |