[PATCH 0/4] Add support for modem handled setup call proactive command

2011-07-06 Thread Jeevaka Badrappan
Hi, Following set of patches adds support for modem handled setup call proactive command. Regards, Jeevaka Jeevaka Badrappan (4): include: Add driver api for user confirmation voicecall: api for set/clear alpha and icon id stk: Handle set up call in handled_notify ifxmodem: add

[PATCH 2/4] voicecall: api for set/clear alpha and icon id

2011-07-06 Thread Jeevaka Badrappan
--- src/ofono.h |5 + src/voicecall.c | 21 + 2 files changed, 26 insertions(+), 0 deletions(-) diff --git a/src/ofono.h b/src/ofono.h index 6524806..118d762 100644 --- a/src/ofono.h +++ b/src/ofono.h @@ -266,6 +266,11 @@ int __ofono_voicecall_dial(struct

[PATCH 3/4] stk: Handle set up call in handled_notify

2011-07-06 Thread Jeevaka Badrappan
--- src/stk.c | 108 +++- 1 files changed, 106 insertions(+), 2 deletions(-) diff --git a/src/stk.c b/src/stk.c index 9575f0e..26faa11 100644 --- a/src/stk.c +++ b/src/stk.c @@ -77,6 +77,8 @@ struct ofono_stk { struct timeval

[PATCH 4/4] ifxmodem: add support for user_confirmation in stk

2011-07-06 Thread Jeevaka Badrappan
--- drivers/ifxmodem/stk.c | 11 +++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/drivers/ifxmodem/stk.c b/drivers/ifxmodem/stk.c index f08cf47..d2082c4 100644 --- a/drivers/ifxmodem/stk.c +++ b/drivers/ifxmodem/stk.c @@ -173,6 +173,16 @@ error:

Re: [PATCH 0/2] Fix oFono rules for 2 ZTE modem

2011-07-06 Thread Denis Kenzior
Hi Guillaume, On 07/05/2011 03:47 AM, Guillaume Zajac wrote: Hi, Those two patches add oFono rules for ZTE modems MF180 and MF668 Guillaume Zajac (2): rules: Add ofono rule for ZTE modem MF180 rules: Add ofono rule for ZTE modem MF668 plugins/ofono.rules |6 ++ 1 files

[PATCH] Create a SpeedUp plugin, using standard AT Modem, and add corresponding udev rules

2011-07-06 Thread Bertrand Aygon
--- Makefile.am |3 + plugins/ofono.rules |9 ++ plugins/speedup.c | 334 +++ plugins/udev.c | 54 4 files changed, 400 insertions(+), 0 deletions(-) create mode 100644 plugins/speedup.c diff --git a/Makefile.am

Re: [PATCH] rules: Add ofono rule for Huwaei modem E173

2011-07-06 Thread Denis Kenzior
Hi Guillaume, On 07/05/2011 10:16 AM, Guillaume Zajac wrote: --- plugins/ofono.rules |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) Patch has been applied, thanks. Regards, -Denis ___ ofono mailing list ofono@ofono.org

Re: [PATCH 3/3 v2] bluetooth: fix not removing data when devices/adapters are removed

2011-07-06 Thread Denis Kenzior
Hi Luiz, On 07/04/2011 02:32 AM, Luiz Augusto von Dentz wrote: From: Luiz Augusto von Dentz luiz.von.de...@intel.com If an adapter or device is removed any data associate should be removed, otherwise the next time they appear/are created the drivers may not asssociate again. ---

Re: [PATCH] Create a SpeedUp plugin, using standard AT Modem, and add corresponding udev rules

2011-07-06 Thread Denis Kenzior
Hi Bertrand, On 07/06/2011 07:34 AM, Bertrand Aygon wrote: --- Makefile.am |3 + plugins/ofono.rules |9 ++ plugins/speedup.c | 334 +++ plugins/udev.c | 54 4 files changed, 400 insertions(+), 0

RE: [PATCH] Create a SpeedUp plugin, using standard AT Modem, and add corresponding udev rules

2011-07-06 Thread Aygon, Bertrand
Hi Denis, Thanks for those comment, I will apply. One point, the speedup.c is a copy of zte.c. Do you want me to apply also for zte.c? Regards, Bertrand - Intel Corporation SAS (French simplified joint stock company)

Re: [PATCH] Create a SpeedUp plugin, using standard AT Modem, and add corresponding udev rules

2011-07-06 Thread Denis Kenzior
Hi Bertrand, On 07/06/2011 11:21 AM, Aygon, Bertrand wrote: Hi Denis, Thanks for those comment, I will apply. One point, the speedup.c is a copy of zte.c. Do you want me to apply also for zte.c? Please do. Regards, -Denis ___ ofono mailing

Re: [PATCH 3/4] stk: Handle set up call in handled_notify

2011-07-06 Thread Andrzej Zaborowski
Hi Jeevaka, On 6 July 2011 12:06, Jeevaka Badrappan jeevaka.badrap...@linux.intel.com wrote: ---  src/stk.c |  108 +++-  1 files changed, 106 insertions(+), 2 deletions(-) diff --git a/src/stk.c b/src/stk.c index 9575f0e..26faa11

Re: [PATCH 1/4] include: Add driver api for user confirmation

2011-07-06 Thread Denis Kenzior
Hi Jeevaka, On 07/06/2011 05:06 AM, Jeevaka Badrappan wrote: --- include/stk.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/stk.h b/include/stk.h index c276c84..9a63917 100644 --- a/include/stk.h +++ b/include/stk.h @@ -47,6 +47,7 @@ struct

Re: [PATCH 2/4] voicecall: api for set/clear alpha and icon id

2011-07-06 Thread Denis Kenzior
Hi Jeevaka, On 07/06/2011 05:06 AM, Jeevaka Badrappan wrote: --- src/ofono.h |5 + src/voicecall.c | 21 + 2 files changed, 26 insertions(+), 0 deletions(-) diff --git a/src/ofono.h b/src/ofono.h index 6524806..118d762 100644 --- a/src/ofono.h +++

Re: [PATCH 3/4] stk: Handle set up call in handled_notify

2011-07-06 Thread Denis Kenzior
Hi Jeevaka, On 07/06/2011 05:06 AM, Jeevaka Badrappan wrote: --- src/stk.c | 108 +++- 1 files changed, 106 insertions(+), 2 deletions(-) diff --git a/src/stk.c b/src/stk.c index 9575f0e..26faa11 100644 --- a/src/stk.c +++

[PATCH 1/2] Add SpeedUp plugin

2011-07-06 Thread Bertrand Aygon
--- Makefile.am |3 + plugins/speedup.c | 334 + 2 files changed, 337 insertions(+), 0 deletions(-) create mode 100644 plugins/speedup.c diff --git a/Makefile.am b/Makefile.am index ef6196b..c08e09f 100644 --- a/Makefile.am +++

[PATCH 2/2] Add udev rules for SpeedUp modem

2011-07-06 Thread Bertrand Aygon
--- plugins/ofono.rules |9 plugins/udev.c | 54 +++ 2 files changed, 63 insertions(+), 0 deletions(-) diff --git a/plugins/ofono.rules b/plugins/ofono.rules index 2829ea2..1fcdddb 100644 --- a/plugins/ofono.rules +++

Re: [PATCH 1/2] Add SpeedUp plugin

2011-07-06 Thread Denis Kenzior
Hi Bertrand, On 07/06/2011 12:25 PM, Bertrand Aygon wrote: --- Makefile.am |3 + plugins/speedup.c | 334 + 2 files changed, 337 insertions(+), 0 deletions(-) create mode 100644 plugins/speedup.c Patch has been applied,

Re: [PATCH 2/2] Add udev rules for SpeedUp modem

2011-07-06 Thread Denis Kenzior
Hi Bertrand, On 07/06/2011 12:25 PM, Bertrand Aygon wrote: --- plugins/ofono.rules |9 plugins/udev.c | 54 +++ 2 files changed, 63 insertions(+), 0 deletions(-) Patch has been applied, thanks. Regards, -Denis

Re: [PATCH] Create a SpeedUp plugin, using standard AT Modem, and add corresponding udev rules

2011-07-06 Thread Marcel Holtmann
Hi Betrand, Makefile.am |3 + plugins/ofono.rules |9 ++ plugins/speedup.c | 334 +++ plugins/udev.c | 54 4 files changed, 400 insertions(+), 0 deletions(-) create mode 100644 plugins/speedup.c same

Re: [Meego-handset] ofono-qt - anything to add/improve?

2011-07-06 Thread Alex Kanavin
2011/7/6 Shane Bryan shane.br...@linux.intel.com: Two things come to mind: 1) A document that identifies which version of oFono the libofono-qt is   targeted for and some metric, like what percent of that version oFono's   API is complete/covered by this library. I haven't given much thought

[PATCH] stk: Use the right command pointer.

2011-07-06 Thread Andrzej Zaborowski
--- src/stk.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/stk.c b/src/stk.c index c86cbfb..fcf3991 100644 --- a/src/stk.c +++ b/src/stk.c @@ -2890,7 +2890,7 @@ void ofono_stk_proactive_command_handled_notify(struct ofono_stk *stk, break;

Re: [PATCH] stk: Use the right command pointer.

2011-07-06 Thread Denis Kenzior
Hi Andrew, On 07/06/2011 03:40 AM, Andrzej Zaborowski wrote: --- src/stk.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Patch has been applied, thanks. Regards, -Denis ___ ofono mailing list ofono@ofono.org

Re: [PATCH v2] emulator: fix CCWA for PTS

2011-07-06 Thread Denis Kenzior
Hi Frédéric, On 06/30/2011 09:52 AM, Frédéric Danis wrote: During test TP/TCA/BV-05-I [Terminate Ongoing Call – While Call Waiting] PTS fails if multiple +CCWA are sent (waiting for 1st phone number when waiting one becomes incoming, intead of 2nd phone number). So, send only 1 +CCWA.