William | cb8ac88 | 2015-12-31 19:15:17 +0800 | [diff] [blame] | 1 | #ifndef __HOST_IPMI_GLOBAL_HANDLER_H__ |
2 | #define __HOST_IPMI_GLOBAL_HANDLER_H__ | ||||
3 | |||||
4 | #include <stdint.h> | ||||
5 | |||||
6 | // Various GLOBAL operations under a single command. | ||||
7 | enum ipmi_global_control_cmds : uint8_t | ||||
8 | { | ||||
9 | IPMI_CMD_WARM_RESET = 0x02, | ||||
10 | }; | ||||
11 | |||||
12 | #endif |