summaryrefslogtreecommitdiffstats
path: root/telephony/java/android/telephony/ServiceState.java
diff options
context:
space:
mode:
authorWink Saville <wink@google.com>2011-03-12 14:52:01 -0800
committerWink Saville <wink@google.com>2011-03-14 12:25:04 -0700
commit9d7d62801ddb206d2ea96d74864a9edfe54d2eee (patch)
tree013f054e692e52468c933f14123ce10b8acb8c5b /telephony/java/android/telephony/ServiceState.java
parent2d24213fca55fece8ce4a69a53abcd45983b0443 (diff)
downloadframeworks_base-9d7d62801ddb206d2ea96d74864a9edfe54d2eee.zip
frameworks_base-9d7d62801ddb206d2ea96d74864a9edfe54d2eee.tar.gz
frameworks_base-9d7d62801ddb206d2ea96d74864a9edfe54d2eee.tar.bz2
Do not merge: Revert the revert of "LTE Changes for Telephony including Multiple PDN support and IPV6 support"
This reverts commit eca208fae6d1b6ae9c8c0e42eee092e86dbddbb7 and is the first of the LTE commits in master being back ported to the LTE branch. Change-Id: I17d4a1b779ed74bc7dfb409d2c1a30f60fdb27c7
Diffstat (limited to 'telephony/java/android/telephony/ServiceState.java')
-rw-r--r--telephony/java/android/telephony/ServiceState.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/telephony/java/android/telephony/ServiceState.java b/telephony/java/android/telephony/ServiceState.java
index 290f2c1..5dcb820 100644
--- a/telephony/java/android/telephony/ServiceState.java
+++ b/telephony/java/android/telephony/ServiceState.java
@@ -91,6 +91,10 @@ public class ServiceState implements Parcelable {
public static final int RADIO_TECHNOLOGY_HSPA = 11;
/** @hide */
public static final int RADIO_TECHNOLOGY_EVDO_B = 12;
+ /** @hide */
+ public static final int RADIO_TECHNOLOGY_LTE = 13;
+ /** @hide */
+ public static final int RADIO_TECHNOLOGY_EHRPD = 14;
/**
* Available registration states for GSM, UMTS and CDMA.
@@ -424,6 +428,12 @@ public class ServiceState implements Parcelable {
case 12:
radioTechnology = "EvDo rev. B";
break;
+ case 13:
+ radioTechnology = "LTE";
+ break;
+ case 14:
+ radioTechnology = "eHRPD";
+ break;
default:
Log.w(LOG_TAG, "mRadioTechnology variable out of range.");
break;