From d9b212630c521d0d5ec1a529a6d453fdf6f31a36 Mon Sep 17 00:00:00 2001 From: Naveen Kalla Date: Wed, 14 Sep 2016 13:53:54 -0700 Subject: [PATCH] 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 --- .../java/com/android/internal/telephony/RILConstants.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/telephony/java/com/android/internal/telephony/RILConstants.java b/telephony/java/com/android/internal/telephony/RILConstants.java index 954b17f744f28..e50901f7eadca 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; }