msm8974-common: gps: Remove nmea log
Nmea log print is removed, as it can be excessive during gps tracking. Bugs: 29499503 29272976 Change-Id: Ia60295207b6bbbcb24bbede4f1802c0c7a2f2544
This commit is contained in:
parent
9af0ec4c51
commit
1647e1d120
@ -904,7 +904,6 @@ void LocEngReportNmea::proc() const {
|
||||
struct timeval tv;
|
||||
gettimeofday(&tv, (struct timezone *) NULL);
|
||||
int64_t now = tv.tv_sec * 1000LL + tv.tv_usec / 1000;
|
||||
CALLBACK_LOG_CALLFLOW("nmea_cb", %d, mLen);
|
||||
|
||||
if (locEng->nmea_cb != NULL)
|
||||
locEng->nmea_cb(now, mNmea, mLen);
|
||||
|
@ -59,7 +59,6 @@ void loc_eng_nmea_send(char *pNmea, int length, loc_eng_data_s_type *loc_eng_dat
|
||||
struct timeval tv;
|
||||
gettimeofday(&tv, (struct timezone *) NULL);
|
||||
int64_t now = tv.tv_sec * 1000LL + tv.tv_usec / 1000;
|
||||
CALLBACK_LOG_CALLFLOW("nmea_cb", %p, pNmea);
|
||||
if (loc_eng_data_p->nmea_cb != NULL)
|
||||
loc_eng_data_p->nmea_cb(now, pNmea, length);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user