diff options
author | Adriana Kobylak <anoo@us.ibm.com> | 2015-10-20 10:23:51 -0500 |
---|---|---|
committer | Adriana Kobylak <anoo@us.ibm.com> | 2015-10-27 16:55:22 -0500 |
commit | 8e30f2a96cfa53c80310c925c3ecbc59b3a38f91 (patch) | |
tree | 84af4aec81ec16f5ad72436f9404e778c5c65a63 /storagehandler.h | |
parent | 84a5a0a8fdb2a5df9e33ab9132f2c083eaa4b756 (diff) | |
download | phosphor-host-ipmid-8e30f2a96cfa53c80310c925c3ecbc59b3a38f91.tar.gz phosphor-host-ipmid-8e30f2a96cfa53c80310c925c3ecbc59b3a38f91.zip |
Add get sel time cmd
Add support for IPMI function Get SEL Time
Diffstat (limited to 'storagehandler.h')
-rw-r--r-- | storagehandler.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/storagehandler.h b/storagehandler.h index 56c1a8b..1b7f552 100644 --- a/storagehandler.h +++ b/storagehandler.h @@ -1,15 +1,16 @@ #ifndef __HOST_IPMI_STORAGE_HANDLER_H__ #define __HOST_IPMI_STORAGE_HANDLER_H__ -// IPMI commands for net functions. +// IPMI commands for Storage net functions. enum ipmi_netfn_storage_cmds { // Get capability bits - IPMI_CMD_SET_SEL_TIME = 0x49, IPMI_CMD_WRITE_FRU_DATA = 0x12, IPMI_CMD_GET_SEL_INFO = 0x40, IPMI_CMD_RESERVE_SEL = 0x42, IPMI_CMD_ADD_SEL = 0x44, + IPMI_CMD_GET_SEL_TIME = 0x48, + IPMI_CMD_SET_SEL_TIME = 0x49, }; |