diff options
author | Patrick Williams <patrick@stwcx.xyz> | 2016-08-12 22:01:02 -0500 |
---|---|---|
committer | Patrick Williams <patrick@stwcx.xyz> | 2016-09-06 18:26:38 +0000 |
commit | 53a360e6793ca4fd679fd527ff8ea4e240bb77d9 (patch) | |
tree | 5cc48c6b514e9fad3e8062d9c185e8f3c22df59b /apphandler.cpp | |
parent | 4b9efaa018485d67c185f83618f7fa7e4858d92c (diff) | |
download | phosphor-host-ipmid-53a360e6793ca4fd679fd527ff8ea4e240bb77d9.tar.gz phosphor-host-ipmid-53a360e6793ca4fd679fd527ff8ea4e240bb77d9.zip |
ipmid: Change .H -> .hpp
Change-Id: Ia1ed05a533736105909717b86f16274b30d36401
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Diffstat (limited to 'apphandler.cpp')
-rw-r--r-- | apphandler.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apphandler.cpp b/apphandler.cpp index 4a77cfa..bfc821e 100644 --- a/apphandler.cpp +++ b/apphandler.cpp @@ -1,6 +1,6 @@ #include "apphandler.h" #include "ipmid-api.h" -#include "ipmid.H" +#include "ipmid.hpp" #include <stdio.h> #include <string.h> #include <stdint.h> @@ -26,7 +26,7 @@ typedef struct }__attribute__((packed)) ipmi_device_id_t; //--------------------------------------------------------------------- -// Called by Host on seeing a SMS_ATN bit set. Return a hardcoded +// Called by Host on seeing a SMS_ATN bit set. Return a hardcoded // value of 0x2 indicating we need Host read some data. //------------------------------------------------------------------- ipmi_ret_t ipmi_app_get_msg_flags(ipmi_netfn_t netfn, ipmi_cmd_t cmd, @@ -39,8 +39,8 @@ ipmi_ret_t ipmi_app_get_msg_flags(ipmi_netfn_t netfn, ipmi_cmd_t cmd, printf("IPMI APP GET MSG FLAGS returning with [bit:2] set\n"); // From IPMI spec V2.0 for Get Message Flags Command : - // bit:[1] from LSB : 1b = Event Message Buffer Full. - // Return as 0 if Event Message Buffer is not supported, + // bit:[1] from LSB : 1b = Event Message Buffer Full. + // Return as 0 if Event Message Buffer is not supported, // or when the Event Message buffer is disabled. // TODO. For now. assume its not disabled and send "0x2" anyway: |