summaryrefslogtreecommitdiffstats
path: root/radio/1.4
diff options
context:
space:
mode:
authorPengquan Meng <mpq@google.com>2019-01-14 20:39:30 -0800
committerPengquan Meng <mpq@google.com>2019-01-15 13:48:14 -0800
commit135530354701403c7e43d55d0186aa94a9cc9aa8 (patch)
tree5ca6c30fa0838376aa4987fad3e9a6ecccee0b47 /radio/1.4
parentdbb2211d32f6e1bf0bb09688d491822bf7b52860 (diff)
downloadplatform_hardware_interfaces-135530354701403c7e43d55d0186aa94a9cc9aa8.tar.gz
platform_hardware_interfaces-135530354701403c7e43d55d0186aa94a9cc9aa8.tar.bz2
platform_hardware_interfaces-135530354701403c7e43d55d0186aa94a9cc9aa8.zip
Add ConnectionStatus to CellInfo v1_4
Bug: 117805040 Test: build Change-Id: Ic0343671000c320ec8f62f84bcefc18c84ee323a
Diffstat (limited to 'radio/1.4')
-rw-r--r--radio/1.4/types.hal7
1 files changed, 4 insertions, 3 deletions
diff --git a/radio/1.4/types.hal b/radio/1.4/types.hal
index d0eb0ac025..761198467f 100644
--- a/radio/1.4/types.hal
+++ b/radio/1.4/types.hal
@@ -39,6 +39,7 @@ import @1.2::CellInfoTdscdma;
import @1.2::CellInfoWcdma;
import @1.2::CardStatus;
import @1.2::CellIdentity;
+import @1.2::CellConnectionStatus;
import @1.2::DataRegStateResult;
import @1.2::PhysicalChannelConfig;
@@ -1500,15 +1501,15 @@ struct CellInfoLte {
/** Overwritten from @1.2::CellInfo in order to update the CellInfoLte to 1.4 version. */
struct CellInfo {
- /** Cell type for selecting from union CellInfo. */
- CellInfoType cellInfoType;
-
/**
* True if the phone is registered to a mobile network that provides service on this cell and
* this cell is being used or would be used for network signaling.
*/
bool isRegistered;
+ /** Connection status for the cell. */
+ CellConnectionStatus connectionStatus;
+
/** CellInfo details, cellInfoType can tell which cell info should be used. */
safe_union Info {
CellInfoGsm gsm;