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

Commit c335dae7 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Add logs for PhysicalChannelConfig indications"

parents 4f57e71c 8bbb7d48
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -5029,6 +5029,8 @@ public class RIL extends BaseCommands implements CommandsInterface {
                return "RIL_UNSOL_ICC_SLOT_STATUS";
            case RIL_UNSOL_KEEPALIVE_STATUS:
                return "RIL_UNSOL_KEEPALIVE_STATUS";
            case RIL_UNSOL_PHYSICAL_CHANNEL_CONFIG:
                return "RIL_UNSOL_PHYSICAL_CHANNEL_CONFIG";
            default:
                return "<unknown response>";
        }
+3 −0
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@ import static com.android.internal.telephony.RILConstants.RIL_UNSOL_NITZ_TIME_RE
import static com.android.internal.telephony.RILConstants.RIL_UNSOL_ON_SS;
import static com.android.internal.telephony.RILConstants.RIL_UNSOL_ON_USSD;
import static com.android.internal.telephony.RILConstants.RIL_UNSOL_PCO_DATA;
import static com.android.internal.telephony.RILConstants.RIL_UNSOL_PHYSICAL_CHANNEL_CONFIG;
import static com.android.internal.telephony.RILConstants.RIL_UNSOL_RADIO_CAPABILITY;
import static com.android.internal.telephony.RILConstants.RIL_UNSOL_RESEND_INCALL_MUTE;
import static com.android.internal.telephony.RILConstants.RIL_UNSOL_RESPONSE_CALL_STATE_CHANGED;
@@ -295,6 +296,8 @@ public class RadioIndication extends IRadioIndication.Stub {
            response.add(new PhysicalChannelConfig(status, config.cellBandwidthDownlink));
        }

        if (RIL.RILJ_LOGD) mRil.unsljLogRet(RIL_UNSOL_PHYSICAL_CHANNEL_CONFIG, response);

        mRil.mPhysicalChannelConfigurationRegistrants.notifyRegistrants(
                new AsyncResult(null, response, null));
    }