Rename CATERR to IERR
CATERR is ambiguous because it represents two types of errors: IERR and
MCERR. This changes the name to IERR to be more specific.
Signed-off-by: Jason M. Bills <jason.m.bills@linux.intel.com>
Change-Id: I325d10cb765bec2121cd644a42e67fc73bd5ab75
diff --git a/include/error_monitors/ierr_monitor.hpp b/include/error_monitors/ierr_monitor.hpp
index b86f6b9..ebd5f20 100644
--- a/include/error_monitors/ierr_monitor.hpp
+++ b/include/error_monitors/ierr_monitor.hpp
@@ -378,7 +378,7 @@
const bool* resetPtr = std::get_if<bool>(&property);
if (resetPtr == nullptr)
{
- std::cerr << "Unable to read reset on CATERR value\n";
+ std::cerr << "Unable to read reset on IERR value\n";
}
else if (*resetPtr)
{
@@ -390,7 +390,7 @@
"xyz.openbmc_project.Settings",
"/xyz/openbmc_project/control/processor_error_config",
"org.freedesktop.DBus.Properties", "Get",
- "xyz.openbmc_project.Control.Processor.ErrConfig", "ResetOnCATERR");
+ "xyz.openbmc_project.Control.Processor.ErrConfig", "ResetOnIERR");
}
void deassertHandler() override