summaryrefslogtreecommitdiff
path: root/drivers/atmodem/voicecall.c
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2013-09-10 10:57:42 -0500
committerDenis Kenzior <denkenz@gmail.com>2013-09-12 13:17:39 -0500
commit0026ae3fb71925fdd90739b8447ad3ae18d111fe (patch)
tree38cfaeefa67c2be28d78e3dda9b1beb81a6a7113 /drivers/atmodem/voicecall.c
parent394069cb595cb1d9da0afe9ce481356bf6985fda (diff)
downloadofono-0026ae3fb71925fdd90739b8447ad3ae18d111fe.tar.gz
atmodem: Update parse_clcc utility function
Diffstat (limited to 'drivers/atmodem/voicecall.c')
-rw-r--r--drivers/atmodem/voicecall.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/atmodem/voicecall.c b/drivers/atmodem/voicecall.c
index e27eb475..7d823a26 100644
--- a/drivers/atmodem/voicecall.c
+++ b/drivers/atmodem/voicecall.c
@@ -167,7 +167,7 @@ static void clcc_poll_cb(gboolean ok, GAtResult *result, gpointer user_data)
return;
}
- calls = at_util_parse_clcc(result);
+ calls = at_util_parse_clcc(result, NULL);
n = calls;
o = vd->calls;
@@ -477,7 +477,7 @@ static void clcc_cb(gboolean ok, GAtResult *result, gpointer user_data)
if (!ok)
return;
- vd->calls = at_util_parse_clcc(result);
+ vd->calls = at_util_parse_clcc(result, NULL);
for (l = vd->calls; l; l = l->next)
ofono_voicecall_notify(vc, l->data);