Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / asm-x86 / reboot.h
blobe9e3ffc22c0719e7b7f0c30be74460df9e030fec
1 #ifndef _ASM_REBOOT_H
2 #define _ASM_REBOOT_H
4 struct pt_regs;
6 struct machine_ops
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);
16 extern struct machine_ops machine_ops;
18 void machine_real_restart(unsigned char *code, int length);
20 #endif /* _ASM_REBOOT_H */