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

Commit ee15c6e2 authored by Devin Moore's avatar Devin Moore
Browse files

Remove sim slot input param from impl

The parent CL is missing this change in the cpp file.

Test: TH
Bug: 388346813
FLAG: EXEMPT HAL interface change
Change-Id: Ib1d3750c22c91374edb7c9ac98d88066c9c5058d
parent af57ab95
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -403,7 +403,7 @@ ScopedAStatus RadioNetwork::setSecurityAlgorithmsUpdatedEnabled(int32_t serial,
}

ScopedAStatus RadioNetwork::setSatellitePlmn(
        int32_t serial, int32_t /*simSlot*/, const std::vector<std::string>& /*carrierPlmnArray*/,
        int32_t serial, const std::vector<std::string>& /*carrierPlmnArray*/,
        const std::vector<std::string>& /*allSatellitePlmnArray*/) {
    LOG_CALL << serial;
    LOG(ERROR) << " setSatellitePlmn is unsupported by HIDL HALs";
@@ -411,15 +411,14 @@ ScopedAStatus RadioNetwork::setSatellitePlmn(
    return ok();
}

ScopedAStatus RadioNetwork::setSatelliteEnabledForCarrier(int32_t serial, int32_t /*simSlot*/,
                                                          bool /*enable*/) {
ScopedAStatus RadioNetwork::setSatelliteEnabledForCarrier(int32_t serial, bool /*enable*/) {
    LOG_CALL << serial;
    LOG(ERROR) << " setSatelliteEnabledForCarrier is unsupported by HIDL HALs";
    respond()->setSatelliteEnabledForCarrierResponse(notSupported(serial));
    return ok();
}

ScopedAStatus RadioNetwork::isSatelliteEnabledForCarrier(int32_t serial, int32_t /*simSlot*/) {
ScopedAStatus RadioNetwork::isSatelliteEnabledForCarrier(int32_t serial) {
    LOG_CALL << serial;
    LOG(ERROR) << " isSatelliteEnabledForCarrier is unsupported by HIDL HALs";
    respond()->isSatelliteEnabledForCarrierResponse(notSupported(serial), false);