aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/ModemManager-enums.h2
-rw-r--r--libmm-common/mm-common-helpers.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/ModemManager-enums.h b/include/ModemManager-enums.h
index 404a4347..232ef6b9 100644
--- a/include/ModemManager-enums.h
+++ b/include/ModemManager-enums.h
@@ -176,7 +176,7 @@ typedef enum { /*< underscore_name=mm_modem_access_technology >*/
/**
* MMModemMode:
* @MM_MODEM_MODE_NONE: None.
- * @MM_MODEM_MODE_1G: CSD, GSM.
+ * @MM_MODEM_MODE_CS: CSD, GSM, and other circuit-switched technologies.
* @MM_MODEM_MODE_2G: GPRS, EDGE.
* @MM_MODEM_MODE_3G: UMTS, HSxPA.
* @MM_MODEM_MODE_4G: LTE.
diff --git a/libmm-common/mm-common-helpers.c b/libmm-common/mm-common-helpers.c
index ea544c0d..78bcd73b 100644
--- a/libmm-common/mm-common-helpers.c
+++ b/libmm-common/mm-common-helpers.c
@@ -118,7 +118,7 @@ mm_common_get_modes_string (MMModemMode mode)
MMModemMode it;
gboolean first = TRUE;
- for (it = MM_MODEM_MODE_1G; /* first */
+ for (it = MM_MODEM_MODE_CS; /* first */
it <= MM_MODEM_MODE_4G; /* last */
it = it << 1) {
if (mode & it) {