summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRavi Paluri <rpaluri@codeaurora.org>2014-08-04 14:07:45 +0530
committerSteve Kondik <steve@cyngn.com>2014-11-27 00:39:32 -0800
commit0b7a93c2533ee172cb94a59bc04122d30ec85838 (patch)
tree7345e8599da1f8f9ce2ba489e9358ba2b6167679
parent6c0b14f27908ca555ea40191dd89df871ecd7c3f (diff)
downloadandroid_hardware_ril-0b7a93c2533ee172cb94a59bc04122d30ec85838.tar.gz
android_hardware_ril-0b7a93c2533ee172cb94a59bc04122d30ec85838.tar.bz2
android_hardware_ril-0b7a93c2533ee172cb94a59bc04122d30ec85838.zip
Correcting RIL unsol command order
Correcting RIL unsol command order. Add QCOM specifc RIL requests at the end in ril.h file Change-Id: Iac2ce6206ae8eb2e9a21b89c4895c5ac770c8fd5
-rw-r--r--include/telephony/ril.h50
1 files changed, 25 insertions, 25 deletions
diff --git a/include/telephony/ril.h b/include/telephony/ril.h
index 31bcba9..2a1ac5f 100644
--- a/include/telephony/ril.h
+++ b/include/telephony/ril.h
@@ -4721,27 +4721,6 @@ typedef struct {
*/
#define RIL_UNSOL_RESPONSE_IMS_NETWORK_STATE_CHANGED 1037
-/*
- * RIL_UNSOL_ON_SS
- *
- * Called when SS response is received when DIAL/USSD/SS is changed to SS by
- * call control.
- *
- * "data" is const RIL_StkCcUnsolSsResponse *
- *
- */
-#define RIL_UNSOL_ON_SS 1038
-
-/**
- * RIL_UNSOL_STK_CC_ALPHA_NOTIFY
- *
- * Called when there is an ALPHA from UICC during Call Control.
- *
- * "data" is const char * containing ALPHA string from UICC in UTF-8 format.
- *
- */
-#define RIL_UNSOL_STK_CC_ALPHA_NOTIFY 1039
-
/**
* RIL_UNSOL_UICC_SUBSCRIPTION_STATUS_CHANGED
*
@@ -4756,7 +4735,7 @@ typedef struct {
* ((const int *)data)[0] == 1 for Subscription Activated
*
*/
-#define RIL_UNSOL_UICC_SUBSCRIPTION_STATUS_CHANGED 1040
+#define RIL_UNSOL_UICC_SUBSCRIPTION_STATUS_CHANGED 1038
/**
* RIL_UNSOL_SRVCC_STATE_NOTIFY
@@ -4769,7 +4748,7 @@ typedef struct {
*
*/
-#define RIL_UNSOL_SRVCC_STATE_NOTIFY 1041
+#define RIL_UNSOL_SRVCC_STATE_NOTIFY 1039
/**
* RIL_UNSOL_HARDWARE_CONFIG_CHANGED
@@ -4779,7 +4758,7 @@ typedef struct {
* "data" is an array of RIL_HardwareConfig
*
*/
-#define RIL_UNSOL_HARDWARE_CONFIG_CHANGED 1042
+#define RIL_UNSOL_HARDWARE_CONFIG_CHANGED 1040
/**
* RIL_UNSOL_DC_RT_INFO_CHANGED
@@ -4791,7 +4770,28 @@ typedef struct {
* "data" is the most recent RIL_DcRtInfo
*
*/
-#define RIL_UNSOL_DC_RT_INFO_CHANGED 1043
+#define RIL_UNSOL_DC_RT_INFO_CHANGED 1041
+
+/*
+ * RIL_UNSOL_ON_SS
+ *
+ * Called when SS response is received when DIAL/USSD/SS is changed to SS by
+ * call control.
+ *
+ * "data" is const RIL_StkCcUnsolSsResponse *
+ *
+ */
+#define RIL_UNSOL_ON_SS 1042
+
+/**
+ * RIL_UNSOL_STK_CC_ALPHA_NOTIFY
+ *
+ * Called when there is an ALPHA from UICC during Call Control.
+ *
+ * "data" is const char * containing ALPHA string from UICC in UTF-8 format.
+ *
+ */
+#define RIL_UNSOL_STK_CC_ALPHA_NOTIFY 1043
/***********************************************************************/