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

Commit a13b2901 authored by Eric Schwarzenbach's avatar Eric Schwarzenbach Committed by android-build-merger
Browse files

Call notify for voiceReg and dataReg VTS tests

am: 9589ee1c

Change-Id: Ie20c0329cd19da7ca2f86c7769ba6f7d3a3ca32b
parents fc203c1b 9589ee1c
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -747,13 +747,17 @@ Return<void> RadioResponse_v1_2::getCellInfoListResponse_1_2(
}

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

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