summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Tang <zhikait@codeaurora.org>2014-12-17 23:49:22 -0800
committerThe Android Automerger <android-build@google.com>2014-12-18 18:39:07 -0800
commit2d76a0a7551490e32f8cbb2f46515d01b3802a82 (patch)
tree9ad1c2014d6762d384a20577713f0941d17af124
parente6f879c50baa5c82d1329e53af5a05ae6c9f489f (diff)
downloadgps-2d76a0a7551490e32f8cbb2f46515d01b3802a82.tar.gz
A later change changed how some of the carrier config items are stored. GPS_LOCK was missed out. Therefore the config values would only work if it configured in gps.conf. The carrier config values was lost unintentionally. Bug: 18754196 Change-Id: I40b9833598a1f227bf765aa422b5752ffc1c9357
-rw-r--r--loc_api/libloc_api_50001/loc_eng.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/loc_api/libloc_api_50001/loc_eng.cpp b/loc_api/libloc_api_50001/loc_eng.cpp
index 92f7d0e..c527e36 100644
--- a/loc_api/libloc_api_50001/loc_eng.cpp
+++ b/loc_api/libloc_api_50001/loc_eng.cpp
@@ -2708,6 +2708,7 @@ void loc_eng_configuration_update (loc_eng_data_s_type &loc_eng_data,
gps_conf_tmp.SUPL_VER = gps_conf.SUPL_VER;
gps_conf_tmp.LPP_PROFILE = gps_conf.LPP_PROFILE;
gps_conf_tmp.A_GLONASS_POS_PROTOCOL_SELECT = gps_conf.A_GLONASS_POS_PROTOCOL_SELECT;
+ gps_conf_tmp.GPS_LOCK = gps_conf.GPS_LOCK;
gps_conf = gps_conf_tmp;
}