aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-02-27 22:59:35 +0100
committerAleksander Morgado <aleksander@lanedo.com>2012-03-16 14:53:17 +0100
commit8b78e037a2b1e81f27e75d3645fbadb34ee9abe1 (patch)
tree37c52c134cbd02af1da9b09692b367ea8bf67ded
parentf1999ef4a3bb61b82956a93f2cc9c4ec72de47c5 (diff)
modem-helpers: temporarily disable facility-related helpers
-rw-r--r--src/mm-modem-helpers.c5
-rw-r--r--src/mm-modem-helpers.h5
2 files changed, 9 insertions, 1 deletions
diff --git a/src/mm-modem-helpers.c b/src/mm-modem-helpers.c
index 1fb5fa94..31978bf2 100644
--- a/src/mm-modem-helpers.c
+++ b/src/mm-modem-helpers.c
@@ -1202,6 +1202,9 @@ mm_3gpp_parse_operator (const gchar *reply,
/*************************************************************************/
+/* TODO: port to the new codebase */
+#if 0
+
/* Map two letter facility codes into flag values. There are
* many more facilities defined (for various flavors of call
* barring); we only map the ones we care about. */
@@ -1348,6 +1351,8 @@ mm_gsm_parse_clck_response (const char *reply, gboolean *enabled)
return success;
}
+#endif
+
/*************************************************************************/
MMModemAccessTechnology
diff --git a/src/mm-modem-helpers.h b/src/mm-modem-helpers.h
index 92b883e1..63bfbd3a 100644
--- a/src/mm-modem-helpers.h
+++ b/src/mm-modem-helpers.h
@@ -103,15 +103,18 @@ gboolean mm_cdma_parse_crm_range_response (const gchar *reply,
gboolean mm_gsm_parse_cscs_support_response (const char *reply,
MMModemCharset *out_charsets);
+/* TODO: port to the new codebase */
+#if 0
gboolean mm_gsm_parse_clck_test_response (const char *reply,
MMModemGsmFacility *out_facilities);
gboolean mm_gsm_parse_clck_response (const char *reply,
gboolean *enabled);
+char *mm_gsm_get_facility_name (MMModemGsmFacility facility);
+#endif
gchar *mm_3gpp_parse_operator (const gchar *reply,
MMModemCharset cur_charset);
-char *mm_gsm_get_facility_name (MMModemGsmFacility facility);
MMModemAccessTechnology mm_3gpp_string_to_access_tech (const gchar *string);