diff options
| author | Brian Silver <bsilver@us.ibm.com> | 2014-12-22 10:41:03 -0600 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2015-01-16 14:53:56 -0600 |
| commit | 740885df9ac6bcb67792912086ed853751b43a9b (patch) | |
| tree | 49cfe443729e5b082e215c0c86cbccfd9aa8616a /src/usr/ipmi/ipmimsg.C | |
| parent | dde72377760a5b03d1c143f42dcf2635cca46b91 (diff) | |
| download | talos-hostboot-740885df9ac6bcb67792912086ed853751b43a9b.tar.gz talos-hostboot-740885df9ac6bcb67792912086ed853751b43a9b.zip | |
IPMI SMS support and initial event handlers
Change-Id: Idf8f4f251b76be9bc253691098bd3bd376b64ca6
RTC: 116600
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/14994
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/ipmi/ipmimsg.C')
| -rw-r--r-- | src/usr/ipmi/ipmimsg.C | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/usr/ipmi/ipmimsg.C b/src/usr/ipmi/ipmimsg.C index 6b3b5fd4a..62145cbe4 100644 --- a/src/usr/ipmi/ipmimsg.C +++ b/src/usr/ipmi/ipmimsg.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2012,2014 */ +/* Contributors Listed Below - COPYRIGHT 2012,2015 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -91,6 +91,9 @@ namespace IPMI case TYPE_ASYNC: new_message = new BTAsyncMessage(i_cmd, i_len, i_data); break; + case TYPE_EVENT: + new_message = new BTAsyncReadEventMessage(i_cmd, i_len, i_data); + break; default: // We have ourselves a bug assert(false, "ipmi message factory: unk type %d\n", i_type); |

