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.
This commit is contained in:
Marcel Holtmann 2010-01-30 07:46:22 -08:00
parent 16f477653d
commit 4d6eaa7404
1 changed files with 1 additions and 1 deletions

View File

@ -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);