Fix enum number in RegistrationFailCause

Bug: 317689758
Test: build
Change-Id: Ie35226fae05054dfe2ec92a4e19a8a6396aa6f25
This commit is contained in:
Aishwarya Mallampati
2024-01-10 20:57:24 +00:00
parent 7186eb9950
commit a4ab299db4
2 changed files with 10 additions and 1 deletions

View File

@@ -50,7 +50,11 @@ enum RegistrationFailCause {
ROAMING_NOT_ALLOWED = 13,
GPRS_SERVICES_NOT_ALLOWED_IN_PLMN = 14,
NO_SUITABLE_CELLS = 15,
/**
* @deprecated MSC_TEMPORARILY_NOT_REACHABLE value is wrong and should not be used. Use MSC_TEMP_NOT_REACHABLE instead.
*/
MSC_TEMPORARILY_NOT_REACHABLE = 15,
MSC_TEMP_NOT_REACHABLE = 16,
NETWORK_FAILURE = 17,
MAC_FAILURE = 20,
SYNC_FAILURE = 21,

View File

@@ -86,9 +86,14 @@ enum RegistrationFailCause {
*/
NO_SUITABLE_CELLS = 15,
/**
* 16 - MSC temporarily not reachable
* @deprecated MSC_TEMPORARILY_NOT_REACHABLE value is wrong and should not be used.
* Use MSC_TEMP_NOT_REACHABLE instead.
*/
MSC_TEMPORARILY_NOT_REACHABLE = 15,
/**
* 16 - MSC temporarily not reachable
*/
MSC_TEMP_NOT_REACHABLE = 16,
/**
* 17 - Network Failure
*/