diff options
author | Denis Kenzior <denis.kenzior@intel.com> | 2009-09-01 18:03:52 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2009-09-01 18:14:59 -0500 |
commit | 4064f4ba7330499a5a62291a646559a4f6a9c555 (patch) | |
tree | 5c4c694436c6319ea12deaff62aef1aa56404880 /drivers/atmodem/voicecall.c | |
parent | e5577046f06e8501d313e669b35455399ff09585 (diff) | |
download | ofono-4064f4ba7330499a5a62291a646559a4f6a9c555.tar.bz2 |
Add vendor flag capability to voicecalls
Diffstat (limited to 'drivers/atmodem/voicecall.c')
-rw-r--r-- | drivers/atmodem/voicecall.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/atmodem/voicecall.c b/drivers/atmodem/voicecall.c index 1a2ef00c..9b115a5e 100644 --- a/drivers/atmodem/voicecall.c +++ b/drivers/atmodem/voicecall.c @@ -983,9 +983,10 @@ static void at_voicecall_initialized(gboolean ok, GAtResult *result, ofono_voicecall_register(vc); } -static int at_voicecall_probe(struct ofono_voicecall *vc) +static int at_voicecall_probe(struct ofono_voicecall *vc, int vendor, + void *data) { - GAtChat *chat = ofono_voicecall_get_data(vc); + GAtChat *chat = data; struct voicecall_data *vd; vd = g_new0(struct voicecall_data, 1); |