From f0b1e1cf25ee16898988a8a8ccf4e32b98933f0e Mon Sep 17 00:00:00 2001 From: Yashdev Singh Date: Thu, 14 May 2015 18:50:20 -0700 Subject: Telephony: 4G+ icon display on status bar. - Add new data RAT LTE_CA. Change-Id: I199cec9f7ff93314e3344d348a9be3802095a8e6 CRs-Fixed: 873290 --- include/telephony/ril.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/telephony/ril.h b/include/telephony/ril.h index 4bd9ad7..66458a7 100644 --- a/include/telephony/ril.h +++ b/include/telephony/ril.h @@ -164,7 +164,8 @@ typedef enum { RADIO_TECH_HSPAP = 15, // HSPA+ RADIO_TECH_GSM = 16, // Only supports voice RADIO_TECH_TD_SCDMA = 17, - RADIO_TECH_IWLAN = 18 + RADIO_TECH_IWLAN = 18, + RADIO_TECH_LTE_CA = 19 } RIL_RadioTechnology; typedef enum { @@ -186,6 +187,7 @@ typedef enum { RAF_HSPAP = (1 << RADIO_TECH_HSPAP), RAF_GSM = (1 << RADIO_TECH_GSM), RAF_TD_SCDMA = (1 << RADIO_TECH_TD_SCDMA), + RAF_LTE_CA = (1 << RADIO_TECH_LTE_CA) } RIL_RadioAccessFamily; typedef enum { -- cgit v1.2.3