Skip to content
Snippets Groups Projects
Commit 5ddc2e09 authored by Subv's avatar Subv
Browse files

Y2R: Use the proper error code when GetStandardCoefficient receives an invalid value.

parent 84d72fd9
No related branches found
No related tags found
No related merge requests found
...@@ -531,7 +531,9 @@ static void GetStandardCoefficient(Interface* self) { ...@@ -531,7 +531,9 @@ static void GetStandardCoefficient(Interface* self) {
LOG_DEBUG(Service_Y2R, "called standard_coefficient=%u ", index); LOG_DEBUG(Service_Y2R, "called standard_coefficient=%u ", index);
} else { } else {
cmd_buff[0] = IPC::MakeHeader(0x21, 1, 0); cmd_buff[0] = IPC::MakeHeader(0x21, 1, 0);
cmd_buff[1] = -1; // TODO(bunnei): Identify the correct error code for this cmd_buff[1] = ResultCode(ErrorDescription::InvalidEnumValue, ErrorModule::CAM,
ErrorSummary::InvalidArgument, ErrorLevel::Usage)
.raw;
LOG_ERROR(Service_Y2R, "called standard_coefficient=%u The argument is invalid!", index); LOG_ERROR(Service_Y2R, "called standard_coefficient=%u The argument is invalid!", index);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment