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

Commit f5727615 authored by Ramesh Sudini's avatar Ramesh Sudini Committed by Wink Saville
Browse files

Do not merge: Telephony: Corrections to LTE and eHRPD constant values.

LTE and EHRPD values are not consistent with ril.h

Change-Id: I76d1ff408a37960873f537772637ff3ae3ac056f
parent f90c2609
Loading
Loading
Loading
Loading
+9 −4
Original line number Diff line number Diff line
@@ -92,9 +92,11 @@ public class ServiceState implements Parcelable {
    /** @hide */
    public static final int RADIO_TECHNOLOGY_EVDO_B = 12;
    /** @hide */
    public static final int RADIO_TECHNOLOGY_LTE = 13;
    public static final int RADIO_TECHNOLOGY_EHRPD = 13;
    /** @hide */
    public static final int RADIO_TECHNOLOGY_EHRPD = 14;
    public static final int RADIO_TECHNOLOGY_LTE = 14;
    /** @hide */
    public static final int RADIO_TECHNOLOGY_HSPAP = 15;

    /**
     * Available registration states for GSM, UMTS and CDMA.
@@ -429,10 +431,13 @@ public class ServiceState implements Parcelable {
            radioTechnology = "EvDo rev. B";
            break;
        case 13:
            radioTechnology = "LTE";
            radioTechnology = "eHRPD";
            break;
        case 14:
            radioTechnology = "eHRPD";
            radioTechnology = "LTE";
            break;
        case 15:
            radioTechnology = "HSPAP";
            break;
        default:
            Log.w(LOG_TAG, "mRadioTechnology variable out of range.");