summaryrefslogtreecommitdiffstats
path: root/src/include/usr/ipmi
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/usr/ipmi')
-rw-r--r--src/include/usr/ipmi/ipmiif.H4
-rw-r--r--src/include/usr/ipmi/ipmisel.H9
2 files changed, 7 insertions, 6 deletions
diff --git a/src/include/usr/ipmi/ipmiif.H b/src/include/usr/ipmi/ipmiif.H
index fa13c3227..a62f722d3 100644
--- a/src/include/usr/ipmi/ipmiif.H
+++ b/src/include/usr/ipmi/ipmiif.H
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2012,2015 */
+/* Contributors Listed Below - COPYRIGHT 2012,2016 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -50,6 +50,8 @@ namespace IPMI
MSG_STATE_SHUTDOWN,
+ MSG_STATE_SHUTDOWN_SEL,
+
MSG_STATE_GRACEFUL_SHUTDOWN,
// Used to check range. Leave as last.
diff --git a/src/include/usr/ipmi/ipmisel.H b/src/include/usr/ipmi/ipmisel.H
index 3ffa34e4a..4509130f4 100644
--- a/src/include/usr/ipmi/ipmisel.H
+++ b/src/include/usr/ipmi/ipmisel.H
@@ -34,7 +34,6 @@
#include <stdint.h>
#include <builtins.h>
#include <ipmi/ipmiif.H>
-#include <sys/sync.h>
/**
@@ -47,7 +46,8 @@ namespace IPMISEL
{
MSG_SEND_ESEL,
MSG_STATE_SHUTDOWN,
- MSG_LAST_TYPE = MSG_STATE_SHUTDOWN,
+ MSG_STATE_SHUTDOWN_SEL,
+ MSG_LAST_TYPE = MSG_STATE_SHUTDOWN_SEL,
};
typedef struct sel_info
@@ -321,9 +321,9 @@ class IpmiSEL
/**
* Thread start routine for the resource provider
- * @param[in] void* instance - 'this' instance to start.
+ * @param[in] void*, unused
*/
- static void* start(void* instance);
+ static void* start(void* unused);
/**
* Default constructor
@@ -350,7 +350,6 @@ class IpmiSEL
void execute(void);
msg_q_t iv_msgQ; //!< ipmi message queue
- barrier_t iv_sync_start;
//Disallow copying of this class.
IpmiSEL& operator=(const IpmiSEL&);
OpenPOWER on IntegriCloud