summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaveen Kalla <mrnaveen@google.com>2016-09-14 13:53:54 -0700
committerJack Yu <jackyu@google.com>2017-05-12 13:57:19 -0700
commitd9b212630c521d0d5ec1a529a6d453fdf6f31a36 (patch)
tree68395486d768acc4b33d39e5d0aa51027270b45d
parentc876eece687f0dd14dfba25b1a3de1e5745003d9 (diff)
downloadbase-d9b212630c521d0d5ec1a529a6d453fdf6f31a36.tar.gz
Add RIL_UNSOL_MODEM_RESTART message
RIL_UNSOL_MODEM_RESTART will be sent by vendor RILs when it detects a modem restart along with the reason for restart which could be a crash signature if the modem restarted due to a crash or a some other string such as a user-initiated restart or AT command initiated restart. Test: Manual Merged-In: Idf08e20a49e82d40f6aa0854d23384c35c2efc3a Change-Id: Idf08e20a49e82d40f6aa0854d23384c35c2efc3a
-rw-r--r--telephony/java/com/android/internal/telephony/RILConstants.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/telephony/java/com/android/internal/telephony/RILConstants.java b/telephony/java/com/android/internal/telephony/RILConstants.java
index 954b17f744f2..e50901f7eadc 100644
--- a/telephony/java/com/android/internal/telephony/RILConstants.java
+++ b/telephony/java/com/android/internal/telephony/RILConstants.java
@@ -466,5 +466,6 @@ cat include/telephony/ril.h | \
int RIL_UNSOL_STK_CC_ALPHA_NOTIFY = 1044;
int RIL_UNSOL_LCEDATA_RECV = 1045;
int RIL_UNSOL_PCO_DATA = 1046;
- int RIL_UNSOL_CARRIER_INFO_IMSI_ENCRYPTION = 1047;
+ int RIL_UNSOL_MODEM_RESTART = 1047;
+ int RIL_UNSOL_CARRIER_INFO_IMSI_ENCRYPTION = 1048;
}