diff options
author | Dan Williams <dcbw@redhat.com> | 2012-05-04 17:38:36 -0500 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2012-05-04 17:38:36 -0500 |
commit | 90f4a034b203d08a3c1a04fcdb6bbbf16d982b7a (patch) | |
tree | 1901ad68ad8b13b47f79260349d4b7c6552e3012 /plugins | |
parent | 1e024c711abf303aa2ff53676ad1bbd3dfceb982 (diff) |
modem-helpers: recognize 3GPP2 access tech strings too
Various Gobi-based devices (USB551L, probably Gobis too) can report
EVDO and 1X as the current RAT from CNTI so parse that here too.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/gobi/mm-broadband-modem-gobi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gobi/mm-broadband-modem-gobi.c b/plugins/gobi/mm-broadband-modem-gobi.c index 01568b47..6c712629 100644 --- a/plugins/gobi/mm-broadband-modem-gobi.c +++ b/plugins/gobi/mm-broadband-modem-gobi.c @@ -59,7 +59,7 @@ load_access_technologies_finish (MMIfaceModem *self, p = strchr (p, ','); if (p) { /* We are reporting ALL 3GPP access technologies here */ - *access_technologies = mm_3gpp_string_to_access_tech (p + 1); + *access_technologies = mm_string_to_access_tech (p + 1); *mask = MM_IFACE_MODEM_3GPP_ALL_ACCESS_TECHNOLOGIES_MASK; return TRUE; } |