aboutsummaryrefslogtreecommitdiff
path: root/libmm-common/mm-common-helpers.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2011-12-30 15:35:01 +0100
committerAleksander Morgado <aleksander@lanedo.com>2012-03-15 14:14:40 +0100
commitcc55734a01566e73f214526f124b87baa548e19d (patch)
tree031cd1c9e3d7feef85ba7071d3932fbbeffeaea7 /libmm-common/mm-common-helpers.c
parenta71e27af961b356ad2a80ebbce2c3036767eadfa (diff)
api,header: don't use '1G' for modem modes, use 'CS' instead.
1G is not the proper way to define GSM, which is already 2G. Use CS instead, which will include all circuit-switched broadband modem technologies.
Diffstat (limited to 'libmm-common/mm-common-helpers.c')
-rw-r--r--libmm-common/mm-common-helpers.c2
1 files changed, 1 insertions, 1 deletions
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) {