summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/hso.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/hso.c b/plugins/hso.c
index 972b78b1..938ce576 100644
--- a/plugins/hso.c
+++ b/plugins/hso.c
@@ -125,9 +125,14 @@ static int hso_enable(struct ofono_modem *modem)
static void cfun_disable(gboolean ok, GAtResult *result, gpointer user_data)
{
struct ofono_modem *modem = user_data;
+ struct hso_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);
}
@@ -144,12 +149,7 @@ static int hso_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 hso_pre_sim(struct ofono_modem *modem)