]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/asm-i386/reboot.h
x86: sanitize pathes arch/x86/kernel/cpu/Makefile
[mirror_ubuntu-artful-kernel.git] / include / asm-i386 / reboot.h
CommitLineData
07f3331c
JF
1#ifndef _ASM_REBOOT_H
2#define _ASM_REBOOT_H
3
4struct pt_regs;
5
6struct machine_ops
7{
8 void (*restart)(char *cmd);
9 void (*halt)(void);
10 void (*power_off)(void);
11 void (*shutdown)(void);
12 void (*crash_shutdown)(struct pt_regs *);
13 void (*emergency_restart)(void);
14};
15
16extern struct machine_ops machine_ops;
17
18void machine_real_restart(unsigned char *code, int length);
19
20#endif /* _ASM_REBOOT_H */