summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius B. Kotsbak <marius@kotsbak.com>2012-09-10 22:25:18 +0200
committerDan Williams <dcbw@redhat.com>2012-09-18 14:55:55 -0500
commit77697c8402e2f923ea4419c79bb60a082f70dee9 (patch)
treeb964b2d4ba69e118a233408f34ba845d53150caf
parent318aaa02fa21321cd3493c7dd1ba8fa29e115064 (diff)
downloadModemManager-77697c8402e2f923ea4419c79bb60a082f70dee9.tar.gz
zte: LTE preference mode (AT+ZSNT=0,6) not supported so use ANY mode instead (AT+ZSNT=0,0)
-rw-r--r--plugins/mm-modem-zte.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/mm-modem-zte.c b/plugins/mm-modem-zte.c
index 6fc4c15d1..1fbcb63f8 100644
--- a/plugins/mm-modem-zte.c
+++ b/plugins/mm-modem-zte.c
@@ -268,8 +268,9 @@ set_allowed_mode (MMGenericGsm *gsm,
pref_acq = 2;
break;
case MM_MODEM_GSM_ALLOWED_MODE_4G_PREFERRED:
+ /* ZTE modems seen until now do not support LTE preference, so use any mode instead */
cm_mode = 0;
- pref_acq = 6;
+ pref_acq = 0;
break;
case MM_MODEM_GSM_ALLOWED_MODE_ANY:
default: