huawei: Use CFUN=5 for CDMA offline state handling

The Huawei CDMA modems only support CFUN=5 for offline mode and so
enforce this one if CDMA support has been detected. Even if the modem
would indicate AT^RFSWITCH support.
This commit is contained in:
Marcel Holtmann 2012-01-06 19:16:43 -08:00
parent 18a1fbca84
commit c7ec6efa4e
1 changed files with 6 additions and 0 deletions

View File

@ -412,11 +412,17 @@ static void rfswitch_support(gboolean ok, GAtResult *result, gpointer user_data)
struct ofono_modem *modem = user_data;
struct huawei_data *data = ofono_modem_get_data(modem);
if (data->have_gsm == FALSE && data->have_cdma == TRUE) {
data->offline_command = "AT+CFUN=5";
goto done;
}
if (!ok)
data->offline_command = "AT+CFUN=5";
else
data->offline_command = "AT+CFUN=7";
done:
g_at_chat_send(data->pcui, "AT+CFUN=1", none_prefix,
cfun_enable, modem, NULL);
}