diff options
author | Dan Williams <dcbw@redhat.com> | 2013-02-07 12:49:55 -0600 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2013-02-07 12:49:55 -0600 |
commit | cd2545c2b63b064675c88129f7a4dcde3e982056 (patch) | |
tree | 46ef0c9d35f309869e9f4f697418a33459f97538 | |
parent | a4ad95e3dae0b3cbbb612cb0febcfb3132ebe333 (diff) |
broadband-modem-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 be HSDPA + HSUPA,
but whatever...
-rw-r--r-- | plugins/mbm/mm-broadband-modem-mbm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mbm/mm-broadband-modem-mbm.c b/plugins/mbm/mm-broadband-modem-mbm.c index e154269c..a5738761 100644 --- a/plugins/mbm/mm-broadband-modem-mbm.c +++ b/plugins/mbm/mm-broadband-modem-mbm.c @@ -674,6 +674,9 @@ erinfo_received (MMAtSerialPort *port, case 2: act = MM_MODEM_ACCESS_TECHNOLOGY_HSDPA; break; + case 3: + act = MM_MODEM_ACCESS_TECHNOLOGY_HSPA; + break; default: break; } |