mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:50:18 +00:00
Fix enum number in RegistrationFailCause
Bug: 317689758 Test: build Change-Id: Ie35226fae05054dfe2ec92a4e19a8a6396aa6f25
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user