Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a22fea61 authored by Eric Schwarzenbach's avatar Eric Schwarzenbach Committed by Xin Li
Browse files

Call notify for voiceReg and dataReg VTS tests

Bug: 80554443
Test: vts
Merged-In: I19f7131f7b65323065f3c283a89668ff761815e3
Change-Id: I19f7131f7b65323065f3c283a89668ff761815e3
(cherry picked from commit 2bb626a2)
parent 70afa883
Loading
Loading
Loading
Loading
+7 −3
Original line number Original line Diff line number Diff line
@@ -745,13 +745,17 @@ Return<void> RadioResponse_v1_2::getCellInfoListResponse_1_2(
}
}


Return<void> RadioResponse_v1_2::getVoiceRegistrationStateResponse_1_2(
Return<void> RadioResponse_v1_2::getVoiceRegistrationStateResponse_1_2(
    const RadioResponseInfo& /*info*/,
    const RadioResponseInfo& info,
    const ::android::hardware::radio::V1_2::VoiceRegStateResult& /*voiceRegResponse*/) {
    const ::android::hardware::radio::V1_2::VoiceRegStateResult& /*voiceRegResponse*/) {
    rspInfo = info;
    parent_v1_2.notify(info.serial);
    return Void();
    return Void();
}
}


Return<void> RadioResponse_v1_2::getDataRegistrationStateResponse_1_2(
Return<void> RadioResponse_v1_2::getDataRegistrationStateResponse_1_2(
    const RadioResponseInfo& /*info*/,
    const RadioResponseInfo& info,
    const ::android::hardware::radio::V1_2::DataRegStateResult& /*dataRegResponse*/) {
    const ::android::hardware::radio::V1_2::DataRegStateResult& /*dataRegResponse*/) {
    rspInfo = info;
    parent_v1_2.notify(info.serial);
    return Void();
    return Void();
}
}