[PATCH 1/2] Distinguish HSDPA, HSUPA or both as access technologies

2010-11-16 Thread Rémi Denis-Courmont
--- src/common.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common.c b/src/common.c index b5b9a6f..22bf1c2 100644 --- a/src/common.c +++ b/src/common.c @@ -661,9 +661,9 @@ const char *registration_tech_to_string(int tech) case

[PATCH 2/2] Update the network documentation

2010-11-16 Thread Rémi Denis-Courmont
--- doc/network-api.txt |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/network-api.txt b/doc/network-api.txt index 083e918..9fb9974 100644 --- a/doc/network-api.txt +++ b/doc/network-api.txt @@ -125,8 +125,9 @@ Properties string Mode [readonly]

[RFC PATCH 2/2] isimodem/voicecall: add long dial string support

2010-11-16 Thread Andras Domokos
--- drivers/isimodem/voicecall.c | 83 +- 1 files changed, 65 insertions(+), 18 deletions(-) diff --git a/drivers/isimodem/voicecall.c b/drivers/isimodem/voicecall.c index c3365f6..b0dad72 100644 --- a/drivers/isimodem/voicecall.c +++

[RFC PATCH 1/2] common: add long dial string support

2010-11-16 Thread Andras Domokos
--- include/types.h |2 +- src/common.c| 12 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/include/types.h b/include/types.h index ba2481f..b3d2247 100644 --- a/include/types.h +++ b/include/types.h @@ -76,7 +76,7 @@ struct ofono_error { int error;

[PATCH] Add SIM reset button

2010-11-16 Thread Gustavo F. Padovan
+CRST now send a reset resquest command --- src/control.cpp|6 ++ src/control.h |1 + src/controlbase.ui | 40 3 files changed, 47 insertions(+), 0 deletions(-) diff --git a/src/control.cpp b/src/control.cpp index ab71752..014e657

[PATCH 1/4] Simplify ofono_modem_set_powered() logic

2010-11-16 Thread Gustavo F. Padovan
--- src/modem.c | 47 +-- 1 files changed, 25 insertions(+), 22 deletions(-) diff --git a/src/modem.c b/src/modem.c index 3776461..3fb6809 100644 --- a/src/modem.c +++ b/src/modem.c @@ -752,6 +752,7 @@ static GDBusSignalTable modem_signals[] = {

[PATCH 3/4] phonesim: Add modem reset trigger

2010-11-16 Thread Gustavo F. Padovan
--- plugins/phonesim.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/plugins/phonesim.c b/plugins/phonesim.c index d2faf42..7426da6 100644 --- a/plugins/phonesim.c +++ b/plugins/phonesim.c @@ -237,6 +237,13 @@ static void cfun_set_on_cb(gboolean ok, GAtResult

[PATCH 4/4] modem: add support to restore state when resetting the modem

2010-11-16 Thread Gustavo F. Padovan
--- src/modem.c | 72 -- 1 files changed, 40 insertions(+), 32 deletions(-) diff --git a/src/modem.c b/src/modem.c index 9ed52c1..64500f6 100644 --- a/src/modem.c +++ b/src/modem.c @@ -61,6 +61,7 @@ enum modem_state { struct ofono_modem

Re: [PATCH] doc: Add Location Services API

2010-11-16 Thread Sjur Brændeland
Hi Marcel. So far this looks like a nice and simple proposal. And it is driven by an existing standard. I like that. Sjur, are you guys up to the task of sending an initial atom implementation and atmodem driver for it? Yes, I think we should be able to, as longs as there is no big hurry.

[PATCH] coding-style: Add exception to M12 rule for external enums

2010-11-16 Thread Sjur Brændeland
From: Sjur Brændeland sjur.brandel...@stericsson.com --- doc/coding-style.txt |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/doc/coding-style.txt b/doc/coding-style.txt index 6fa355e..fb43891 100644 --- a/doc/coding-style.txt +++ b/doc/coding-style.txt @@ -205,6

[PATCH] todo: Add Location Service (AGPS) task.

2010-11-16 Thread Sjur Brændeland
From: Sjur Brændeland sjur.brandel...@stericsson.com --- TODO |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/TODO b/TODO index bf2305b..dec43fd 100644 --- a/TODO +++ b/TODO @@ -496,3 +496,11 @@ Miscellaneous Priority: Low Complexity: C4 + +- Add Location

[PATCH] stemodem: Change use of types

2010-11-16 Thread Sjur Brændeland
From: Sjur Brændeland sjur.brandel...@stericsson.com Use the type __u32 for sequence counting rather than guint32, and void * instead of gpointer. Reduce the size of RTNL message buffer from 4096 to 1024, as this should be sufficient to hold the NEWLINK message. --- drivers/stemodem/caif_rtnl.c