blob: 608df3b20c173785e142be33056c7bbece99995f [file] [log] [blame]
Williamcb8ac882015-12-31 19:15:17 +08001#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.
7enum ipmi_global_control_cmds : uint8_t
8{
9IPMI_CMD_WARM_RESET = 0x02,
10};
11
12#endif