summaryrefslogtreecommitdiff
path: root/implementation/e2e_protection/src/e2e/profile/profile01/checker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/e2e_protection/src/e2e/profile/profile01/checker.cpp')
-rw-r--r--implementation/e2e_protection/src/e2e/profile/profile01/checker.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/implementation/e2e_protection/src/e2e/profile/profile01/checker.cpp b/implementation/e2e_protection/src/e2e/profile/profile01/checker.cpp
index bea8dc1..a5d75d8 100644
--- a/implementation/e2e_protection/src/e2e/profile/profile01/checker.cpp
+++ b/implementation/e2e_protection/src/e2e/profile/profile01/checker.cpp
@@ -16,8 +16,11 @@ namespace e2e {
namespace profile01 {
// [SWS_E2E_00196]
-void profile_01_checker::check(const e2e_buffer &_buffer,
- e2e::profile_interface::check_status_t &_generic_check_status) {
+void profile_01_checker::check(const e2e_buffer &_buffer, instance_t _instance,
+ e2e::profile_interface::check_status_t &_generic_check_status) {
+
+ (void)_instance;
+
std::lock_guard<std::mutex> lock(check_mutex_);
_generic_check_status = e2e::profile_interface::generic_check_status::E2E_ERROR;
@@ -34,7 +37,6 @@ void profile_01_checker::check(const e2e_buffer &_buffer,
<< (uint32_t) calculated_crc << " received CRC: " << (uint32_t) received_crc;
}
}
- return;
}
} // namespace profile01