summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2010-09-23 22:44:39 -0500
committerDenis Kenzior <denkenz@gmail.com>2010-09-23 23:53:40 -0500
commit9d70f936e96943c7f72fb11e8e95426c52d124e1 (patch)
treeb6be6e949836d40d89741bfc8b5506675e19b344
parent1f68dcabeb23879a8daac847d3bf0c860c60f3b0 (diff)
downloadofono-9d70f936e96943c7f72fb11e8e95426c52d124e1.tar.bz2
ifx: Use none_prefix on other init commands
-rw-r--r--drivers/ifxmodem/voicecall.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/ifxmodem/voicecall.c b/drivers/ifxmodem/voicecall.c
index 26426b35..bcbd9bad 100644
--- a/drivers/ifxmodem/voicecall.c
+++ b/drivers/ifxmodem/voicecall.c
@@ -917,11 +917,11 @@ static int ifx_voicecall_probe(struct ofono_voicecall *vc, unsigned int vendor,
ofono_voicecall_set_data(vc, vd);
- g_at_chat_send(vd->chat, "AT+CRC=1", NULL, NULL, NULL, NULL);
- g_at_chat_send(vd->chat, "AT+CLIP=1", NULL, NULL, NULL, NULL);
- g_at_chat_send(vd->chat, "AT+COLP=1", NULL, NULL, NULL, NULL);
+ g_at_chat_send(vd->chat, "AT+CRC=1", none_prefix, NULL, NULL, NULL);
+ g_at_chat_send(vd->chat, "AT+CLIP=1", none_prefix, NULL, NULL, NULL);
+ g_at_chat_send(vd->chat, "AT+COLP=1", none_prefix, NULL, NULL, NULL);
g_at_chat_send(chat, "AT+XCALLSTAT=1", none_prefix, NULL, NULL, NULL);
- g_at_chat_send(vd->chat, "AT+CCWA=1", NULL,
+ g_at_chat_send(vd->chat, "AT+CCWA=1", none_prefix,
ifx_voicecall_initialized, vc, NULL);
return 0;
}