From 692e59f1086738b7b82b282af1f0129a49ae2673 Mon Sep 17 00:00:00 2001 From: Forest Bond Date: Thu, 28 Mar 2013 17:00:40 -0400 Subject: [PATCH] huawei: Use AlwaysOnline for CDMA modems --- plugins/huawei.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/plugins/huawei.c b/plugins/huawei.c index 5d8875ad..59995b30 100644 --- a/plugins/huawei.c +++ b/plugins/huawei.c @@ -447,6 +447,13 @@ static void sysinfo_enable_cb(gboolean ok, GAtResult *result, g_at_chat_send(data->pcui, "AT^CVOICE=?", cvoice_prefix, cvoice_support_cb, modem, NULL); + /* For CDMA we use AlwaysOnline so we leave the modem online. */ + if (data->have_gsm == FALSE && data->have_cdma == TRUE) { + ofono_modem_set_boolean(modem, "AlwaysOnline", TRUE); + ofono_modem_set_powered(modem, TRUE); + return; + } + if (g_at_chat_send(data->pcui, data->offline_command, none_prefix, cfun_offline, modem, NULL) > 0) return;