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

Commit 75a3f12f authored by Devin Moore's avatar Devin Moore Committed by Android (Google) Code Review
Browse files

Merge "Deprecate eHRPD and IS-95A/B (CDMA)" into main

parents 36ab73b4 bb9a4e83
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -169,6 +169,9 @@ enum DataCallFailCause {
  MAX_PPP_INACTIVITY_TIMER_EXPIRED = 0x7FE,
  IPV6_ADDRESS_TRANSFER_FAILED = 0x7FF,
  TRAT_SWAP_FAILED = 0x800,
  /**
   * @deprecated Legacy CDMA is unsupported.
   */
  EHRPD_TO_HRPD_FALLBACK = 0x801,
  MIP_CONFIG_FAILURE = 0x802,
  PDN_INACTIVITY_TIMER_EXPIRED = 0x803,
+9 −0
Original line number Diff line number Diff line
@@ -39,7 +39,13 @@ enum RadioAccessFamily {
  GPRS = (1 << android.hardware.radio.RadioTechnology.GPRS) /* 2 */,
  EDGE = (1 << android.hardware.radio.RadioTechnology.EDGE) /* 4 */,
  UMTS = (1 << android.hardware.radio.RadioTechnology.UMTS) /* 8 */,
  /**
   * @deprecated Legacy CDMA is unsupported.
   */
  IS95A = (1 << android.hardware.radio.RadioTechnology.IS95A) /* 16 */,
  /**
   * @deprecated Legacy CDMA is unsupported.
   */
  IS95B = (1 << android.hardware.radio.RadioTechnology.IS95B) /* 32 */,
  /**
   * @deprecated Legacy CDMA is unsupported.
@@ -60,6 +66,9 @@ enum RadioAccessFamily {
   * @deprecated Legacy CDMA is unsupported.
   */
  EVDO_B = (1 << android.hardware.radio.RadioTechnology.EVDO_B) /* 4096 */,
  /**
   * @deprecated Legacy CDMA is unsupported.
   */
  EHRPD = (1 << android.hardware.radio.RadioTechnology.EHRPD) /* 8192 */,
  LTE = (1 << android.hardware.radio.RadioTechnology.LTE) /* 16384 */,
  HSPAP = (1 << android.hardware.radio.RadioTechnology.HSPAP) /* 32768 */,
+9 −0
Original line number Diff line number Diff line
@@ -39,7 +39,13 @@ enum RadioTechnology {
  GPRS,
  EDGE,
  UMTS,
  /**
   * @deprecated Legacy CDMA is unsupported.
   */
  IS95A,
  /**
   * @deprecated Legacy CDMA is unsupported.
   */
  IS95B,
  /**
   * @deprecated Legacy CDMA is unsupported.
@@ -60,6 +66,9 @@ enum RadioTechnology {
   * @deprecated Legacy CDMA is unsupported.
   */
  EVDO_B,
  /**
   * @deprecated Legacy CDMA is unsupported.
   */
  EHRPD,
  LTE,
  HSPAP,
+3 −0
Original line number Diff line number Diff line
@@ -27,7 +27,9 @@ enum RadioAccessFamily {
    GPRS = 1 << RadioTechnology.GPRS,
    EDGE = 1 << RadioTechnology.EDGE,
    UMTS = 1 << RadioTechnology.UMTS,
    /** @deprecated Legacy CDMA is unsupported. */
    IS95A = 1 << RadioTechnology.IS95A,
    /** @deprecated Legacy CDMA is unsupported. */
    IS95B = 1 << RadioTechnology.IS95B,
    /** @deprecated Legacy CDMA is unsupported. */
    ONE_X_RTT = 1 << RadioTechnology.ONE_X_RTT,
@@ -40,6 +42,7 @@ enum RadioAccessFamily {
    HSPA = 1 << RadioTechnology.HSPA,
    /** @deprecated Legacy CDMA is unsupported. */
    EVDO_B = 1 << RadioTechnology.EVDO_B,
    /** @deprecated Legacy CDMA is unsupported. */
    EHRPD = 1 << RadioTechnology.EHRPD,
    LTE = 1 << RadioTechnology.LTE,
    HSPAP = 1 << RadioTechnology.HSPAP,
+3 −0
Original line number Diff line number Diff line
@@ -25,7 +25,9 @@ enum RadioTechnology {
    GPRS,
    EDGE,
    UMTS,
    /** @deprecated Legacy CDMA is unsupported. */
    IS95A,
    /** @deprecated Legacy CDMA is unsupported. */
    IS95B,
    /** @deprecated Legacy CDMA is unsupported. */
    ONE_X_RTT,
@@ -38,6 +40,7 @@ enum RadioTechnology {
    HSPA,
    /** @deprecated Legacy CDMA is unsupported. */
    EVDO_B,
    /** @deprecated Legacy CDMA is unsupported. */
    EHRPD,
    LTE,
    /**
Loading