summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2018-11-10 00:22:49 -0800
committerGerrit - the friendly Code Review server <code-review@localhost>2018-11-10 00:22:49 -0800
commit0056afe9bd404cd3ff081d5cc9e4a5f4d77309fd (patch)
tree5a11220bd5311bcad317c81145223611d187a53b /utils
parent512388f80689620fae581302ce6d05111568951b (diff)
parent84a25954a72d6120ab340a01b3c92f8a0f77920f (diff)
downloadgps-0056afe9bd404cd3ff081d5cc9e4a5f4d77309fd.tar.gz
Merge "remove LOC_MODEM_EMULATOR from gps.utils"
Diffstat (limited to 'utils')
-rw-r--r--utils/loc_cfg.cpp13
-rw-r--r--utils/loc_cfg.h2
2 files changed, 0 insertions, 15 deletions
diff --git a/utils/loc_cfg.cpp b/utils/loc_cfg.cpp
index af2ece6..71dfc66 100644
--- a/utils/loc_cfg.cpp
+++ b/utils/loc_cfg.cpp
@@ -57,14 +57,12 @@
/* Parameter data */
static uint32_t DEBUG_LEVEL = 0xff;
static uint32_t TIMESTAMP = 0;
-static uint32_t LOC_MODEM_EMULATOR = 0;
/* Parameter spec table */
static const loc_param_s_type loc_param_table[] =
{
{"DEBUG_LEVEL", &DEBUG_LEVEL, NULL, 'n'},
{"TIMESTAMP", &TIMESTAMP, NULL, 'n'},
- {"LOC_MODEM_EMULATOR", &LOC_MODEM_EMULATOR, NULL, 'n'},
};
static const int loc_param_num = sizeof(loc_param_table) / sizeof(loc_param_s_type);
@@ -88,17 +86,6 @@ const char LOC_PATH_XTWIFI_CONF[] = LOC_PATH_XTWIFI_CONF_STR;
const char LOC_PATH_QUIPC_CONF[] = LOC_PATH_QUIPC_CONF_STR;
/*===========================================================================
-FUNCTION loc_modem_emulator_enabled
-
-DESCRIPTION
- Provides access to Modem Emulator config item.
-===========================================================================*/
-uint32_t loc_modem_emulator_enabled()
-{
- return LOC_MODEM_EMULATOR;
-}
-
-/*===========================================================================
FUNCTION loc_set_config_entry
DESCRIPTION
diff --git a/utils/loc_cfg.h b/utils/loc_cfg.h
index 3057abc..a8bdaed 100644
--- a/utils/loc_cfg.h
+++ b/utils/loc_cfg.h
@@ -133,8 +133,6 @@ extern const char LOC_PATH_QUIPC_CONF[];
int loc_read_process_conf(const char* conf_file_name, uint32_t * process_count_ptr,
loc_process_info_s_type** process_info_table_ptr);
-uint32_t loc_modem_emulator_enabled();
-
#ifdef __cplusplus
}
#endif