summaryrefslogtreecommitdiffstats
path: root/dcmihandler.cpp
diff options
context:
space:
mode:
authorGunnar Mills <gmills@us.ibm.com>2018-03-23 12:18:12 -0500
committerGunnar Mills <gmills@us.ibm.com>2018-03-23 12:18:12 -0500
commit8466b792959984e6b02eadb1cdf02d1868373401 (patch)
tree1afcba15707a13dc1e719e35c03af883919cbc8f /dcmihandler.cpp
parentdf53d222006890b4d918dc92308bf981947a515a (diff)
downloadphosphor-host-ipmid-8466b792959984e6b02eadb1cdf02d1868373401.tar.gz
phosphor-host-ipmid-8466b792959984e6b02eadb1cdf02d1868373401.zip
Spelling fixes
Spelling errors found using github.com/lucasdemarchi/codespell A tool to fix common misspellings. This tool is licensed under GNU General Public License, version 2. Change-Id: I1d0551f8b7ceb7f74a975cae0a35ced15c01a74d Tested: Built the repo Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
Diffstat (limited to 'dcmihandler.cpp')
-rw-r--r--dcmihandler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/dcmihandler.cpp b/dcmihandler.cpp
index c077aa5..2f3eded 100644
--- a/dcmihandler.cpp
+++ b/dcmihandler.cpp
@@ -1130,7 +1130,7 @@ ipmi_ret_t setDCMIConfParams(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
DCMI_SET_CONF_PARAM_REQ_PACKET_MIN_SIZE || *data_len >
DCMI_SET_CONF_PARAM_REQ_PACKET_MAX_SIZE)
{
- log<level::ERR>("Invalid Group ID or Invaild Requested Packet size",
+ log<level::ERR>("Invalid Group ID or Invalid Requested Packet size",
entry("GROUP_ID=%d", requestData->groupID),
entry("PACKET SIZE=%d", *data_len));
return IPMI_CC_INVALID_FIELD_REQUEST;
@@ -1208,7 +1208,7 @@ ipmi_ret_t getDCMIConfParams(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
if (requestData->groupID != dcmi::groupExtId || *data_len != sizeof(
dcmi::GetConfParamsRequest))
{
- log<level::ERR>("Invalid Group ID or Invaild Requested Packet size",
+ log<level::ERR>("Invalid Group ID or Invalid Requested Packet size",
entry("GROUP_ID=%d", requestData->groupID),
entry("PACKET SIZE=%d", *data_len));
return IPMI_CC_INVALID_FIELD_REQUEST;
@@ -1300,7 +1300,7 @@ ipmi_ret_t getPowerReading(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
responseData->groupID = dcmi::groupExtId;
// TODO: openbmc/openbmc#2819
- // Minumum, Maximum, Average power, TimeFrame, TimeStamp,
+ // Minimum, Maximum, Average power, TimeFrame, TimeStamp,
// PowerReadingState readings need to be populated
// after Telemetry changes.
uint16_t totalPower = static_cast<uint16_t>(power);
OpenPOWER on IntegriCloud