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

Commit b3a29067 authored by Etan Cohen's avatar Etan Cohen Committed by Android Git Automerger
Browse files

am 81e3e472: Merge "Add TD_SCDMA RAT type (already exists in RIL) and classify...

am 81e3e472: Merge "Add TD_SCDMA RAT type (already exists in RIL) and classify as CDMA." into lmp-dev

* commit '81e3e472':
  Add TD_SCDMA RAT type (already exists in RIL) and classify as CDMA.
parents ff7c67f2 81e3e472
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -146,6 +146,8 @@ public class ServiceState implements Parcelable {
     * @hide
     */
    public static final int RIL_RADIO_TECHNOLOGY_GSM = 16;
    /** @hide */
    public static final int RIL_RADIO_TECHNOLOGY_TD_SCDMA = 17;

    /**
     * Available registration states for GSM, UMTS and CDMA.
@@ -859,6 +861,7 @@ public class ServiceState implements Parcelable {
                || radioTechnology == RIL_RADIO_TECHNOLOGY_EVDO_0
                || radioTechnology == RIL_RADIO_TECHNOLOGY_EVDO_A
                || radioTechnology == RIL_RADIO_TECHNOLOGY_EVDO_B
                || radioTechnology == RIL_RADIO_TECHNOLOGY_EHRPD;
                || radioTechnology == RIL_RADIO_TECHNOLOGY_EHRPD
                || radioTechnology == RIL_RADIO_TECHNOLOGY_TD_SCDMA;
    }
}