aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2013-02-07 10:51:26 -0600
committerDan Williams <dcbw@redhat.com>2013-02-07 10:51:26 -0600
commit63c512170f00bd869c1034233580888f16150c80 (patch)
treef6accd38802f85dfec87a47c580d8a5c1530626b
parent002b9c8088b4c0431d442d3c59e41db81199102b (diff)
mbm: handle HSPA access technology in ERINFO response
HSUPA/HSPA capable devices (ex F5521gw) can report '3' here, which we'll decide to interpret as HSPA. It might actually mean HSDPA + HSUPA, but whatever...
-rw-r--r--plugins/mm-modem-mbm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mm-modem-mbm.c b/plugins/mm-modem-mbm.c
index 76b2aea3..ab7d84e6 100644
--- a/plugins/mm-modem-mbm.c
+++ b/plugins/mm-modem-mbm.c
@@ -244,6 +244,9 @@ mbm_erinfo_received (MMAtSerialPort *port,
case 2:
act = MM_MODEM_GSM_ACCESS_TECH_HSDPA;
break;
+ case 3:
+ act = MM_MODEM_GSM_ACCESS_TECH_HSPA;
+ break;
default:
break;
}