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

Commit 8bbb7d48 authored by Eric Schwarzenbach's avatar Eric Schwarzenbach
Browse files

Add logs for PhysicalChannelConfig indications

Bug: 78791811
Test: compilation

Change-Id: Ia958009f0e8632b8b5b26fa5a4ff673e0f1a275f
(cherry picked from commit 9eac50b6)
parent 4f57e71c
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));
    }