[PATCH] gprs: Fix for gprs context conversion

2010-12-01 Thread Antti Paila
--- src/gprs.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gprs.c b/src/gprs.c index 610f3b2..58166f8 100644 --- a/src/gprs.c +++ b/src/gprs.c @@ -175,7 +175,7 @@ static gboolean gprs_context_string_to_type(const char *str, return TRUE; }

[PATCH 2/3] plugins: Enabling nettime plugin in Makefile.am

2010-12-03 Thread Antti Paila
--- Makefile.am |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Makefile.am b/Makefile.am index a4c47e8..94dbaa1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -296,6 +296,9 @@ builtin_modules += example_nettime builtin_sources += examples/nettime.c endif

[PATCH 1/3] plugins: Implementation of Network Time plugin

2010-12-03 Thread Antti Paila
--- include/dbus.h|1 + plugins/nettime.c | 293 + 2 files changed, 294 insertions(+), 0 deletions(-) create mode 100644 plugins/nettime.c diff --git a/include/dbus.h b/include/dbus.h index 9e29afb..0c48f83 100644 --- a/include/dbus.h

[PATCH 3/3] plugins: Test scripts for nettime plugin

2010-12-03 Thread Antti Paila
--- test/get-nettime | 25 + test/test-nettime | 46 ++ 2 files changed, 71 insertions(+), 0 deletions(-) create mode 100755 test/get-nettime create mode 100755 test/test-nettime diff --git a/test/get-nettime

Re: [PATCH 1/3] plugins: Implementation of Network Time plugin

2010-12-07 Thread Antti Paila
Hi Rémi, 2010/12/6 Rémi Denis-Courmont remi.denis-courm...@nokia.com: +static struct tm *refresh_nw_time(struct tm *nw_time, + time_t received) +{ + time_t now, new_nw_time; + + now = get_monotonic_time(); + new_nw_time = timegm(nw_time) +

Re: [PATCH 1/3] plugins: Implementation of Network Time plugin

2010-12-07 Thread Antti Paila
Hi Marcel, I have seen a bunch of devices where we have not a proper clock value to begin with. And in that case there is nothing really useful we can do with it, except just set the system clock right away. We are not using any absolute time value from any clock, but instead we use relative

[PATCH 0/4 v2] Network Time plugin

2010-12-09 Thread Antti Paila
This series of patches introduces the network time part of the NITZ feature as outlined in 3GPP spec 22.042. The Network Time plugin has two DBUS interfaces for client applications: notification signal and polling method call. The time information consists of three dictionary entries: 1)

[PATCH 1/4 v2] plugins: Implementation of Network Time plugin

2010-12-09 Thread Antti Paila
--- include/dbus.h|1 + plugins/nettime.c | 285 + 2 files changed, 286 insertions(+), 0 deletions(-) create mode 100644 plugins/nettime.c diff --git a/include/dbus.h b/include/dbus.h index 9e29afb..0c48f83 100644 --- a/include/dbus.h

[PATCH 3/4 v2] plugins: Test scripts for nettime plugin

2010-12-09 Thread Antti Paila
--- test/get-nettime | 25 + test/test-nettime | 46 ++ 2 files changed, 71 insertions(+), 0 deletions(-) create mode 100755 test/get-nettime create mode 100755 test/test-nettime diff --git a/test/get-nettime

[PATCH 2/4 v2] plugins: Enabling nettime plugin in Makefile.am

2010-12-09 Thread Antti Paila
--- Makefile.am | 10 -- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index cdb3166..70162ec 100644 --- a/Makefile.am +++ b/Makefile.am @@ -296,6 +296,9 @@ builtin_modules += example_nettime builtin_sources += examples/nettime.c endif

[PATCH 4/4 v2] plugins: Documentation for nettime plugin

2010-12-09 Thread Antti Paila
--- doc/network-time-api.txt | 31 +++ 1 files changed, 31 insertions(+), 0 deletions(-) create mode 100644 doc/network-time-api.txt diff --git a/doc/network-time-api.txt b/doc/network-time-api.txt new file mode 100644 index 000..cb2b9d7 --- /dev/null +++

Re: [PATCH 0/4 v2] Network Time plugin

2010-12-20 Thread Antti Paila
Hi, Could someone review this patch. It has been waiting for review a while now. Thanks. -Antti On Fri, 2010-12-10 at 09:53 +0200, Antti Paila wrote: This series of patches introduces the network time part of the NITZ feature as outlined in 3GPP spec 22.042. The Network Time plugin has

[PATCH] udev: Fix warning in compilation

2010-12-21 Thread Antti Paila
--- plugins/udev.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/plugins/udev.c b/plugins/udev.c index 837ee9c..3ca6af0 100644 --- a/plugins/udev.c +++ b/plugins/udev.c @@ -452,7 +452,6 @@ static void add_isi(struct ofono_modem *modem, static void add_calypso(struct

[RFC PATCH 1/4] cell-info: Atom for ECID info of neighb cells

2010-12-21 Thread Antti Paila
--- src/cell-info.c | 537 +++ 1 files changed, 537 insertions(+), 0 deletions(-) create mode 100644 src/cell-info.c diff --git a/src/cell-info.c b/src/cell-info.c new file mode 100644 index 000..13ae03c --- /dev/null +++

[RFC PATCH 0/4] Atom for Neighbour Cell Info

2010-12-21 Thread Antti Paila
This series of patches implements an interface for client application to fetch the ECID information of neighbouring cells using DBUS. src/cell-info.c | 537 +++ include/cell-info.h | 66 +++

[RFC PATCH 3/4] cell-info: Interface declarations

2010-12-21 Thread Antti Paila
--- include/dbus.h |1 + src/ofono.h|1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/dbus.h b/include/dbus.h index c527515..98839cc 100644 --- a/include/dbus.h +++ b/include/dbus.h @@ -45,6 +45,7 @@ extern C { #define OFONO_MESSAGE_WAITING_INTERFACE

[RFC PATCH 4/4] cell-info: New files included for compilation

2010-12-21 Thread Antti Paila
--- Makefile.am |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 12b3c33..86f1ab5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,7 +14,7 @@ include_HEADERS = include/log.h include/plugin.h include/history.h \

[RFC PATCH 0/5 v2] Atom for Neighbour Cell Info

2010-12-22 Thread Antti Paila
This series of patches implements an interface for client application to fetch the ECID information of neighbouring cells using DBUS. ___ ofono mailing list ofono@ofono.org http://lists.ofono.org/listinfo/ofono

[RFC PATCH 2/5 v2] cell-info: Header file for cell-info atom

2010-12-22 Thread Antti Paila
--- include/cell-info.h | 133 +++ 1 files changed, 133 insertions(+), 0 deletions(-) create mode 100644 include/cell-info.h diff --git a/include/cell-info.h b/include/cell-info.h new file mode 100644 index 000..3941e69 --- /dev/null +++

[RFC PATCH 5/5 v2] cell-info: Documentation

2010-12-22 Thread Antti Paila
--- doc/cell-info.txt | 110 + 1 files changed, 110 insertions(+), 0 deletions(-) create mode 100644 doc/cell-info.txt diff --git a/doc/cell-info.txt b/doc/cell-info.txt new file mode 100644 index 000..9144eb7 --- /dev/null +++

Re: [RFC PATCH 2/5 v2] cell-info: Header file for cell-info atom

2010-12-22 Thread Antti Paila
On Wed, 2010-12-22 at 20:45 +0200, ext Aki Niemi wrote: Hi Antti, On Wed, 2010-12-22 at 11:35 +0200, ext Antti Paila wrote: --- include/cell-info.h | 133 +++ 1 files changed, 133 insertions(+), 0 deletions(-) create mode 100644

Re: [RFC PATCH 5/5 v2] cell-info: Documentation

2010-12-22 Thread Antti Paila
Hi Aki, On Wed, 2010-12-22 at 20:46 +0200, ext Aki Niemi wrote: Hi Antti, On Wed, 2010-12-22 at 11:35 +0200, ext Antti Paila wrote: --- doc/cell-info.txt | 110 + 1 files changed, 110 insertions(+), 0 deletions(-) create mode

RE: [RFC PATCH 2/5 v2] cell-info: Header file for cell-info atom

2010-12-22 Thread Antti Paila
Hi Jun, On Thu, 2010-12-23 at 14:31 +0800, ext Wei, Jun wrote: Hi Antti, On Wed, 2010-12-22 at 11:35 +0200, ext Antti Paila wrote: --- include/cell-info.h | 133 +++ 1 files changed, 133 insertions(+), 0 deletions(-) create mode

RE: [RFC PATCH 2/5 v2] cell-info: Header file for cell-info atom

2010-12-26 Thread Antti Paila
Hi Waldo, On Fri, 2010-12-24 at 10:54 -0800, ext Bastian, Waldo wrote: +struct gsm { + int lac; + int ci; + int ta; + int no_cells; + struct geran_neigh_cell{ + int arfcn; + int bsic; + int rxlev; + + } nmr[OFONO_MAX_NMR_COUNT];

n900 not recongnized by ofono?

2010-12-26 Thread Antti Paila
Hi, It appears that after commit 374dd32812026c3d728f2a14f78357463f12a3f8 ofono is no longer registering n900 properly. At least 'list-modems' shows empty list even if two commit earlier [isigen0] is there as it should. Has the functionality changed or is this regression? Best Regards, Antti

RE: [RFC PATCH 1/5 v2] cell-info: Atom for ECID info of neighb cells

2010-12-28 Thread Antti Paila
Hi Jun, On Tue, 2010-12-28 at 18:00 +0800, ext Wei, Jun wrote: Hi Antti, +static GSList *g_drivers = NULL; + +static GDBusMethodTable ci_methods[] = { +{ GetProperties, , a{sv}aa{sv}, ci_get_cells }, +{ } +}; + Do we need to add 'G_DBUS_METHOD_FLAG_ASYNC' after

[PATCH 4/5] cell-info: New files included for compilation

2010-12-28 Thread Antti Paila
--- Makefile.am |8 +--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index dfdb7bd..d9b0ad3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,7 +14,8 @@ include_HEADERS = include/log.h include/plugin.h include/history.h \

[PATCH 2/5] cell-info: Atom for ECID info of neighb cells

2010-12-28 Thread Antti Paila
--- src/cell-info.c | 512 +++ 1 files changed, 512 insertions(+), 0 deletions(-) create mode 100644 src/cell-info.c diff --git a/src/cell-info.c b/src/cell-info.c new file mode 100644 index 000..1a561e4 --- /dev/null +++

[PATCH 3/5] cell-info: Interface declaration for cell info

2010-12-28 Thread Antti Paila
--- include/dbus.h |1 + src/ofono.h|1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/dbus.h b/include/dbus.h index c527515..98839cc 100644 --- a/include/dbus.h +++ b/include/dbus.h @@ -45,6 +45,7 @@ extern C { #define OFONO_MESSAGE_WAITING_INTERFACE

[PATCH 0/5] Neighboring Cell Info

2010-12-28 Thread Antti Paila
This series of patches implements an interface for client application to fetch the ECID information of neighboring cells using DBUS. include/cell-info.h | 128 +++ src/cell-info.c | 512 +++

[PATCH 5/5] cell-info: Documentation

2010-12-28 Thread Antti Paila
--- doc/cell-info.txt | 124 + 1 files changed, 124 insertions(+), 0 deletions(-) create mode 100644 doc/cell-info.txt diff --git a/doc/cell-info.txt b/doc/cell-info.txt new file mode 100644 index 000..b288e69 --- /dev/null +++

Re: [PATCH 5/5] cell-info: Documentation

2010-12-28 Thread Antti Paila
Hi Marcel, On Tue, 2010-12-28 at 09:13 -0800, ext Marcel Holtmann wrote: Hi Antti, doc/cell-info.txt | 124 + 1 files changed, 124 insertions(+), 0 deletions(-) create mode 100644 doc/cell-info.txt diff --git

[PATCH 1/5 v2] Cell-info: CellInfo DBUS interface definition

2011-01-04 Thread Antti Paila
--- include/dbus.h |1 + src/ofono.h|1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/dbus.h b/include/dbus.h index c527515..98839cc 100644 --- a/include/dbus.h +++ b/include/dbus.h @@ -45,6 +45,7 @@ extern C { #define OFONO_MESSAGE_WAITING_INTERFACE

[PATCH 0/5 v2] Neighbor cell info Atom

2011-01-04 Thread Antti Paila
datatypes have been optimized. Antti Paila (5): Cell-info: CellInfo DBUS interface definition Cell-info: Header file for Neighbor cell info Cell-info: Atom for obtaining ECID info of cells Cell-info: New files included in compilation Cell-info: Documentation Makefile.am |8

[PATCH 2/5 v2] Cell-info: Header file for Neighbor cell info

2011-01-04 Thread Antti Paila
--- include/cell-info.h | 128 +++ 1 files changed, 128 insertions(+), 0 deletions(-) create mode 100644 include/cell-info.h diff --git a/include/cell-info.h b/include/cell-info.h new file mode 100644 index 000..e08944c --- /dev/null +++

[PATCH 3/5 v2] Cell-info: Atom for obtaining ECID info of cells

2011-01-04 Thread Antti Paila
--- src/cell-info.c | 482 +++ 1 files changed, 482 insertions(+), 0 deletions(-) create mode 100644 src/cell-info.c diff --git a/src/cell-info.c b/src/cell-info.c new file mode 100644 index 000..e509b9e --- /dev/null +++

[PATCH 5/5 v2] Cell-info: Documentation

2011-01-04 Thread Antti Paila
--- doc/cell-info.txt | 121 + 1 files changed, 121 insertions(+), 0 deletions(-) create mode 100644 doc/cell-info.txt diff --git a/doc/cell-info.txt b/doc/cell-info.txt new file mode 100644 index 000..9d39e38 --- /dev/null +++

Re: [PATCH 0/4 v2] Network Time plugin

2011-01-07 Thread Antti Paila
Hi Marcel, On Tue, 2011-01-04 at 13:49 -0800, ext Marcel Holtmann wrote: Hi Aki, But then it is far simpler to have a D-Bus getter and a D-Bus signal by any sane measure of complexity. So you did consider the complexity on both sides, ofonod and timed? And not just

[PATCH 3/5 v3] Cell-info: Atom for obtaining ECID info of cells

2011-01-12 Thread Antti Paila
--- src/cell-info.c | 485 +++ 1 files changed, 485 insertions(+), 0 deletions(-) create mode 100644 src/cell-info.c diff --git a/src/cell-info.c b/src/cell-info.c new file mode 100644 index 000..0ba6658 --- /dev/null +++

[PATCH 5/5 v3] Cell-info: Documentation

2011-01-12 Thread Antti Paila
--- doc/cell-info.txt | 121 + 1 files changed, 121 insertions(+), 0 deletions(-) create mode 100644 doc/cell-info.txt diff --git a/doc/cell-info.txt b/doc/cell-info.txt new file mode 100644 index 000..64d9db6 --- /dev/null +++

[PATCH 1/5 v3] Cell-info: CellInfo DBUS interface definition

2011-01-12 Thread Antti Paila
--- include/dbus.h |1 + src/ofono.h|1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/dbus.h b/include/dbus.h index 12768f6..f2e18bf 100644 --- a/include/dbus.h +++ b/include/dbus.h @@ -45,6 +45,7 @@ extern C { #define OFONO_MESSAGE_WAITING_INTERFACE

[PATCH 4/5 v3] Cell-info: New files included in compilation

2011-01-12 Thread Antti Paila
--- Makefile.am |8 +--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 4dec90a..096450f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,7 +15,8 @@ include_HEADERS = include/log.h include/plugin.h include/history.h \

[PATCH 0/5 v3] Neighbor Cell Info Atom

2011-01-12 Thread Antti Paila
datatypes have been optimized. Since the 2nd version MNC and MCC are converted to strings and CPICH-RSCP re-typed. Antti Paila (5): Cell-info: CellInfo DBUS interface definition Cell-info: Header file for Neighbor cell info Cell-info: Atom for obtaining ECID info of cells Cell-info: New

[PATCH 1/5 v3] nettime: Header file for nettime plugins

2011-01-13 Thread Antti Paila
--- include/nettime.h |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/nettime.h b/include/nettime.h index 0f23cc7..2f73e1a 100644 --- a/include/nettime.h +++ b/include/nettime.h @@ -31,6 +31,10 @@ struct ofono_network_time; struct ofono_nettime_context {

[PATCH 0/5 v3] Network Time plugin

2011-01-13 Thread Antti Paila
an interface with a method that is called by the nettime plugin with time related info as a parameter of the method. Antti Paila (5): nettime: Header file for nettime plugins nettime: Network time plugin implementation nettime: DBUS and compilation configuration nettime: Documentation

[PATCH 5/5 v3] nettime: Mock Timed for testing

2011-01-13 Thread Antti Paila
--- test/test-nettime | 35 +++ 1 files changed, 35 insertions(+), 0 deletions(-) create mode 100755 test/test-nettime diff --git a/test/test-nettime b/test/test-nettime new file mode 100755 index 000..c215902 --- /dev/null +++ b/test/test-nettime @@ -0,0

[PATCH 3/5 v3] nettime: DBUS and compilation configuration

2011-01-13 Thread Antti Paila
--- Makefile.am|9 +++-- src/ofono.conf |2 ++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index a68fc36..4e30cc9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -321,6 +321,9 @@ builtin_modules += example_nettime builtin_sources +=

[PATCH 2/5 v3] nettime: Network time plugin implementation

2011-01-13 Thread Antti Paila
--- plugins/nettime.c | 317 + 1 files changed, 317 insertions(+), 0 deletions(-) create mode 100644 plugins/nettime.c diff --git a/plugins/nettime.c b/plugins/nettime.c new file mode 100644 index 000..ee24320 --- /dev/null +++

[PATCH 4/5 v3] nettime: Documentation

2011-01-13 Thread Antti Paila
--- doc/network-time-api.txt | 36 1 files changed, 36 insertions(+), 0 deletions(-) create mode 100644 doc/network-time-api.txt diff --git a/doc/network-time-api.txt b/doc/network-time-api.txt new file mode 100644 index 000..bdefed7 --- /dev/null +++

Re: [PATCH 3/5 v3] nettime: DBUS and compilation configuration

2011-01-17 Thread Antti Paila
Hi Marcel, On Fri, 2011-01-14 at 01:22 +0100, ext Marcel Holtmann wrote: Hi Antti, Makefile.am|9 +++-- src/ofono.conf |2 ++ 2 files changed, 9 insertions(+), 2 deletions(-) snip policy user=root allow own=org.ofono/ +allow own=com.meego/

Re: [PATCH 3/5 v3] nettime: DBUS and compilation configuration

2011-01-21 Thread Antti Paila
Hi, On Thu, 2011-01-20 at 12:19 +0100, ext Marcel Holtmann wrote: Hi Aki, please don't implement org.ofono interface in timed. Just implement a timed specific (com.nokia.time) interface and punch the whole for that in the timed D-Bus policy. I think there is some disconnect here.

[PATCH 3/4] nettime: Documentation

2011-02-01 Thread Antti Paila
--- doc/network-time-api.txt | 36 1 files changed, 36 insertions(+), 0 deletions(-) create mode 100644 doc/network-time-api.txt diff --git a/doc/network-time-api.txt b/doc/network-time-api.txt new file mode 100644 index 000..9133a73 --- /dev/null +++

[PATCH 4/4] nettime: Mock Timed for testing

2011-02-01 Thread Antti Paila
--- test/test-nettime | 35 +++ 1 files changed, 35 insertions(+), 0 deletions(-) create mode 100755 test/test-nettime diff --git a/test/test-nettime b/test/test-nettime new file mode 100755 index 000..908a5db --- /dev/null +++ b/test/test-nettime @@ -0,0

[PATCH 2/4] nettime: Makefile.am modification

2011-02-01 Thread Antti Paila
--- Makefile.am |9 +++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index a38fcb9..2d54025 100644 --- a/Makefile.am +++ b/Makefile.am @@ -337,6 +337,9 @@ builtin_modules += example_provision builtin_sources += examples/provision.c endif

Re: [PATCH 1/4] nettime: Network time plugin implementation

2011-02-08 Thread Antti Paila
Hi Marcel, On Mon, 2011-02-07 at 10:58 -0800, ext Marcel Holtmann wrote: Hi Antti, plugins/nettime.c | 326 + 1 files changed, 326 insertions(+), 0 deletions(-) create mode 100644 plugins/nettime.c I would prefer if we call

Re: [PATCH 2/5 v3] Cell-info: Header file for Neighbor cell info

2011-02-08 Thread Antti Paila
Hi Marcel, On Mon, 2011-02-07 at 11:30 -0800, ext Marcel Holtmann wrote: Hi Antti, +#define OFONO_CI_FIELD_TA_UNDEFINED 0xFF +#define OFONO_CI_FIELD_UCID_UNDEFINED 0x +#define OFONO_CI_FIELD_ECN0_UNDEFINED 0xFF +#define OFONO_CI_FIELD_RSCP_UNDEFINED -127 +#define

Re: [PATCH 5/5 v3] Cell-info: Documentation

2011-02-08 Thread Antti Paila
Hi Marcel, On Mon, 2011-02-07 at 11:24 -0800, ext Marcel Holtmann wrote: Hi Antti, doc/cell-info.txt | 121 + 1 files changed, 121 insertions(+), 0 deletions(-) create mode 100644 doc/cell-info.txt diff --git

[PATCH 0/3 v5] Network Time Plugin

2011-02-09 Thread Antti Paila
an interface with a method that is called by the nettime plugin with time related info as a parameter of the method. Antti Paila (3): nettime: Network time plugin implementation nettime: Makefile.am modification nettime: Mock Timed for testing Makefile.am |6 +- plugins

[PATCH 1/3] nettime: Network time plugin implementation

2011-02-09 Thread Antti Paila
--- plugins/meego-nettime.c | 321 +++ 1 files changed, 321 insertions(+), 0 deletions(-) create mode 100644 plugins/meego-nettime.c diff --git a/plugins/meego-nettime.c b/plugins/meego-nettime.c new file mode 100644 index 000..442925c ---

[PATCH 2/3] nettime: Makefile.am modification

2011-02-09 Thread Antti Paila
--- Makefile.am |6 +- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/Makefile.am b/Makefile.am index e402de4..b043f9e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -338,6 +338,9 @@ builtin_modules += example_provision builtin_sources += examples/provision.c endif

[PATCH 3/3] nettime: Mock Timed for testing

2011-02-09 Thread Antti Paila
--- test/test-nettime | 35 +++ 1 files changed, 35 insertions(+), 0 deletions(-) create mode 100755 test/test-nettime diff --git a/test/test-nettime b/test/test-nettime new file mode 100755 index 000..acdd167 --- /dev/null +++ b/test/test-nettime @@ -0,0

[PATCH 0/5 v4] Neighbor Cell Info Atom

2011-02-14 Thread Antti Paila
datatypes have been optimized. Since the 2nd version MNC and MCC are converted to strings and CPICH-RSCP re-typed. Since 3rd version multiradio support is added and interfaces are renamed. Antti Paila (5): cell-info: CellInfo DBUS interface definition cell-info: Header files for neighbor cell

[PATCH 3/5] cell-info: Atom for neighbor cell info

2011-02-14 Thread Antti Paila
--- src/cell-info.c | 475 +++ 1 files changed, 475 insertions(+), 0 deletions(-) create mode 100644 src/cell-info.c diff --git a/src/cell-info.c b/src/cell-info.c new file mode 100644 index 000..6e70202 --- /dev/null +++

[PATCH 4/5] cell-info: New files included in compilation

2011-02-14 Thread Antti Paila
--- Makefile.am |9 ++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 42ad86f..785640b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,7 +14,8 @@ pkginclude_HEADERS = include/log.h include/plugin.h include/history.h \

[PATCH 5/5] cell-info: Documentation

2011-02-14 Thread Antti Paila
--- doc/cell-info.txt | 122 + 1 files changed, 122 insertions(+), 0 deletions(-) create mode 100644 doc/cell-info.txt diff --git a/doc/cell-info.txt b/doc/cell-info.txt new file mode 100644 index 000..b8a4136 --- /dev/null +++

[PATCH] gisi: Consumer functions for ISI message iterator

2011-03-02 Thread Antti Paila
--- gisi/iter.c | 63 +++ gisi/iter.h | 13 2 files changed, 76 insertions(+), 0 deletions(-) diff --git a/gisi/iter.c b/gisi/iter.c index a925b15..f3f6f5a 100644 --- a/gisi/iter.c +++ b/gisi/iter.c @@ -55,6 +55,7 @@ void

[PATCH] gisi: M6 coding style violation corrections

2011-03-04 Thread Antti Paila
--- gisi/iter.c | 16 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/gisi/iter.c b/gisi/iter.c index f3f6f5a..8308c00 100644 --- a/gisi/iter.c +++ b/gisi/iter.c @@ -56,7 +56,7 @@ void g_isi_sb_iter_init_full(GIsiSubBlockIter *iter, const GIsiMessage *msg,

[PATCH 1/5] isimodem: new enums declared for cell info

2011-03-07 Thread Antti Paila
--- drivers/isimodem/debug.c |5 + drivers/isimodem/network.h |8 2 files changed, 13 insertions(+), 0 deletions(-) diff --git a/drivers/isimodem/debug.c b/drivers/isimodem/debug.c index 38f97f9..b6d6f75 100644 --- a/drivers/isimodem/debug.c +++ b/drivers/isimodem/debug.c

[PATCH 0/5] Cell info for ISI modem

2011-03-07 Thread Antti Paila
This series of patches brings the neighbor cell info support for ISI modems. Antti Paila (5): isimodem: new enums declared for cell info isimodem: Driver implementation isimodem: cell info init and exit functions isimodem: cell info creation to post_online isimodem: Makefile

[PATCH 4/5] isimodem: cell info creation to post_online

2011-03-07 Thread Antti Paila
--- plugins/isiusb.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/plugins/isiusb.c b/plugins/isiusb.c index 2d17b43..1356f8f 100644 --- a/plugins/isiusb.c +++ b/plugins/isiusb.c @@ -55,6 +55,7 @@ #include ofono/gprs.h #include ofono/gprs-context.h #include

[PATCH 5/5] isimodem: Makefile modifications

2011-03-07 Thread Antti Paila
--- Makefile.am | 13 - 1 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Makefile.am b/Makefile.am index 3f20717..0f9f201 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,7 +15,8 @@ pkginclude_HEADERS = include/log.h include/plugin.h include/history.h \

[PATCH] atmodem: Enable network time for AT modem

2011-03-08 Thread Antti Paila
--- drivers/atmodem/network-registration.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/atmodem/network-registration.c b/drivers/atmodem/network-registration.c index 4913611..2d589f0 100644 --- a/drivers/atmodem/network-registration.c +++

RE: [PATCH] atmodem: Enable network time for AT modem

2011-03-08 Thread Antti Paila
Hi Jeevaka, On Tue, 2011-03-08 at 10:59 +0200, ext jeevaka.badrap...@elektrobit.com wrote: Hi Antti, ofono-boun...@ofono.org wrote: --- drivers/atmodem/network-registration.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git

Re: [PATCH] atmodem: Enable network time for AT modem

2011-03-11 Thread Antti Paila
Hi Marcel, On Tue, 2011-03-08 at 09:12 -0800, ext Marcel Holtmann wrote: Hi Antti, drivers/atmodem/network-registration.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/atmodem/network-registration.c b/drivers/atmodem/network-registration.c

[PATCH] Add Direction property to voice call

2011-08-30 Thread Antti Paila
--- doc/voicecall-api.txt |6 ++ src/voicecall.c |9 + 2 files changed, 15 insertions(+), 0 deletions(-) diff --git a/doc/voicecall-api.txt b/doc/voicecall-api.txt index 7eb41aa..6870905 100644 --- a/doc/voicecall-api.txt +++ b/doc/voicecall-api.txt @@ -110,6 +110,12 @@