From dc2dc41bcf225e4dba0cbdadd238d6d8f49203ca Mon Sep 17 00:00:00 2001 From: Jarko Poutiainen Date: Mon, 10 Sep 2012 15:16:07 +0300 Subject: [PATCH] isimodem: voicecall answer fix for Nemo on N9 Voicecall answering in Mer/Nemomobile run on Nokia N9 will fail unless call id is passed to modem. --- drivers/isimodem/voicecall.c | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/drivers/isimodem/voicecall.c b/drivers/isimodem/voicecall.c index 2f38f68a..b5496871 100644 --- a/drivers/isimodem/voicecall.c +++ b/drivers/isimodem/voicecall.c @@ -1504,7 +1504,20 @@ static void isi_dial(struct ofono_voicecall *ovc, static void isi_answer(struct ofono_voicecall *ovc, ofono_voicecall_cb_t cb, void *data) { - isi_call_answer_req(ovc, CALL_ID_ALL, cb, data); + struct isi_voicecall *ivc = ofono_voicecall_get_data(ovc); + int id; + + for (id = 1; id <= 7; id++) { + + if (ivc->calls[id].status == CALL_STATUS_MT_ALERTING) + goto answer_by_id; + + } + + id = CALL_ID_ALL; + +answer_by_id: + isi_call_answer_req(ovc, id, cb, data); } static void isi_hangup_current(struct ofono_voicecall *ovc,