diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2010-10-28 18:10:15 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-10-28 18:10:15 +0200 |
commit | b433249763c606d75fd089d386b0082e6a7c9ee9 (patch) | |
tree | e1bbdae07752cadef600ba3331260b096a688694 | |
parent | d684c811492c60c44157badf7b52e6b51717d227 (diff) | |
download | ofono-b433249763c606d75fd089d386b0082e6a7c9ee9.tar.bz2 |
ifxmodem: Enable Calling Name Presentation (CNAP) notifications
This enables the CNAP notifications so that they show up in the traces
if used by a network. No logic is implemented to handle them.
-rw-r--r-- | drivers/ifxmodem/voicecall.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ifxmodem/voicecall.c b/drivers/ifxmodem/voicecall.c index 90f6e8c8..98d65063 100644 --- a/drivers/ifxmodem/voicecall.c +++ b/drivers/ifxmodem/voicecall.c @@ -707,6 +707,7 @@ static int ifx_voicecall_probe(struct ofono_voicecall *vc, unsigned int vendor, 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(vd->chat, "AT+CNAP=1", none_prefix, NULL, NULL, NULL); g_at_chat_send(vd->chat, "AT+CCWA=1", none_prefix, ifx_voicecall_initialized, vc, NULL); |