diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c2d0b21..061478a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ will consitute of a breaking change warranting a new major release: - PLOC SUPV latchup report could not be handled previously. - Bugfix in PLOC SUPV latchup report parsing. +- Bugfix in PLOC MPSoC HK set: Set and variables were not set valid. # [v7.6.1] 2024-02-05 diff --git a/linux/payload/PlocMpsocHandler.cpp b/linux/payload/PlocMpsocHandler.cpp index 9aa110e1..6df5a59b 100644 --- a/linux/payload/PlocMpsocHandler.cpp +++ b/linux/payload/PlocMpsocHandler.cpp @@ -998,6 +998,7 @@ ReturnValue_t PlocMpsocHandler::handleGetHkReport(const uint8_t* data) { if (result != returnvalue::OK) { return result; } + hkReport.setValidity(true, true); return returnvalue::OK; }