summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorYingjie Wang <yingjiewang@codeaurora.org>2019-06-28 12:49:52 +0800
committerYingjie Wang <yingjiewang@codeaurora.org>2019-06-28 12:49:52 +0800
commit18d9283e40353e7064f8e190e045e1d4d6bfe587 (patch)
tree6ae88cb6c4e1635f709e215f84d596da5f8f7585 /android
parent60403cd1daedd4fb1b90d76fce8d6dfd15a1c982 (diff)
downloadgps-18d9283e40353e7064f8e190e045e1d4d6bfe587.tar.gz
Fix updateConnectionStatus call in gnss hidl 1.0/1
Change-Id: I4c3b66ec440c982714ccd7a3f6111319ad1601fb CRs-fixed: 2480731
Diffstat (limited to 'android')
-rw-r--r--android/1.0/AGnssRil.cpp2
-rw-r--r--android/1.1/AGnssRil.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/android/1.0/AGnssRil.cpp b/android/1.0/AGnssRil.cpp
index 0ab4fad..0437cf1 100644
--- a/android/1.0/AGnssRil.cpp
+++ b/android/1.0/AGnssRil.cpp
@@ -102,7 +102,7 @@ Return<bool> AGnssRil::updateNetworkState(bool connected, NetworkType type, bool
}
break;
}
- mGnss->getGnssInterface()->updateConnectionStatus(connected, typeout);
+ mGnss->getGnssInterface()->updateConnectionStatus(connected, false, typeout, 0);
}
return true;
}
diff --git a/android/1.1/AGnssRil.cpp b/android/1.1/AGnssRil.cpp
index 96e3597..1e774f1 100644
--- a/android/1.1/AGnssRil.cpp
+++ b/android/1.1/AGnssRil.cpp
@@ -102,7 +102,7 @@ Return<bool> AGnssRil::updateNetworkState(bool connected, NetworkType type, bool
}
break;
}
- mGnss->getGnssInterface()->updateConnectionStatus(connected, typeout);
+ mGnss->getGnssInterface()->updateConnectionStatus(connected, false, typeout, 0);
}
return true;
}