sanders: update GPS HAL

* LA.UM.6.5.r1-04000-8x96.0

Change-Id: I53666d7eb27d350c6a4893ad37d2a69b16fceb7e
This commit is contained in:
Vachounet
2018-02-07 20:43:06 +01:00
committed by therootlord
parent 809d80472d
commit 4501be51f5
11 changed files with 535 additions and 28 deletions

View File

@@ -72,7 +72,10 @@ void AGnss::agnssStatusIpV4Cb(AGnssExtStatusIpV4 status){
}
st.ipV4Addr = status.ipV4Addr;
sAGnssCbIface->agnssStatusIpV4Cb(st);
auto r = sAGnssCbIface->agnssStatusIpV4Cb(st);
if (!r.isOk()) {
LOC_LOGE("Error invoking AGNSS status cb %s", r.description().c_str());
}
}
Return<void> AGnss::setCallback(const sp<IAGnssCallback>& callback) {