summaryrefslogtreecommitdiffstats
path: root/plugins/ste.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-01-30 07:46:22 -0800
committerMarcel Holtmann <marcel@holtmann.org>2010-01-30 07:46:22 -0800
commit4d6eaa7404df924b9b5a6eab14559cc818325f42 (patch)
tree02f8d35e4298c71c8da22dbfe328f97d2498357a /plugins/ste.c
parent16f477653dd82fbfcc30d599bf74984e2404a1f4 (diff)
downloadofono-4d6eaa7404df924b9b5a6eab14559cc818325f42.tar.bz2
Use blocking GAtChat objects for STE modems
Due to some missing implementation of POLLOUT, the access to the CAIF channels of the STE modems have to be done in a blocking fashion.
Diffstat (limited to 'plugins/ste.c')
-rw-r--r--plugins/ste.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ste.c b/plugins/ste.c
index 5605b76b..66065c14 100644
--- a/plugins/ste.c
+++ b/plugins/ste.c
@@ -157,7 +157,7 @@ static int ste_enable(struct ofono_modem *modem)
syntax = g_at_syntax_new_gsm_permissive();
- data->chat = g_at_chat_new(channel, syntax);
+ data->chat = g_at_chat_new_blocking(channel, syntax);
g_at_syntax_unref(syntax);
g_io_channel_unref(channel);