From d7613a047827e7a8d9dc46e5c1024a9705e164f8 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Wed, 18 Nov 2009 12:08:37 -0600 Subject: [PATCH] Fix: modem _disable needs to send the CFUN For Novatel driver --- plugins/novatel.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/novatel.c b/plugins/novatel.c index b140a8a..3bd53ed 100644 --- a/plugins/novatel.c +++ b/plugins/novatel.c @@ -121,9 +121,14 @@ static int novatel_enable(struct ofono_modem *modem) static void cfun_disable(gboolean ok, GAtResult *result, gpointer user_data) { struct ofono_modem *modem = user_data; + struct novatel_data *data = ofono_modem_get_data(modem); DBG(""); + g_at_chat_shutdown(data->chat); + g_at_chat_unref(data->chat); + data->chat = NULL; + if (ok) ofono_modem_set_powered(modem, FALSE); } @@ -140,12 +145,7 @@ static int novatel_disable(struct ofono_modem *modem) g_at_chat_send(data->chat, "AT+CFUN=0", NULL, cfun_disable, modem, NULL); - g_at_chat_shutdown(data->chat); - - g_at_chat_unref(data->chat); - data->chat = NULL; - - return 0; + return -EINPROGRESS; } static void novatel_pre_sim(struct ofono_modem *modem) -- 2.7.4