All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH 1/2] hfp_ag: Fix empty parameter list in functions
  2011-12-29 22:00 [PATCH 1/2] hfp_ag: Fix empty parameter list in functions Syam Sidhardhan
@ 2011-12-28 22:24 ` Denis Kenzior
  2011-12-29 22:00 ` [PATCH 2/3] " Syam Sidhardhan
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Denis Kenzior @ 2011-12-28 22:24 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 197 bytes --]

Hi Syam,

On 12/29/2011 04:00 PM, Syam Sidhardhan wrote:
> ---
>  plugins/hfp_ag.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 

Applied, thanks.

Regards,
-Denis

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/2] telit: Fix empty parameter list in function
  2011-12-29 22:00 ` [PATCH 2/2] telit: Fix empty parameter list in function Syam Sidhardhan
@ 2011-12-28 22:25   ` Denis Kenzior
  0 siblings, 0 replies; 6+ messages in thread
From: Denis Kenzior @ 2011-12-28 22:25 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 190 bytes --]

Hi Syam,

On 12/29/2011 04:00 PM, Syam Sidhardhan wrote:
> ---
>  plugins/telit.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

Applied, thanks.

Regards,
-Denis

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/2] hfp_ag: Fix empty parameter list in functions
@ 2011-12-29 22:00 Syam Sidhardhan
  2011-12-28 22:24 ` Denis Kenzior
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Syam Sidhardhan @ 2011-12-29 22:00 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 691 bytes --]

---
 plugins/hfp_ag.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/plugins/hfp_ag.c b/plugins/hfp_ag.c
index 4a244d9..c2d1d30 100644
--- a/plugins/hfp_ag.c
+++ b/plugins/hfp_ag.c
@@ -190,7 +190,7 @@ static void call_modemwatch(struct ofono_modem *modem, void *user)
 	modem_watch(modem, TRUE, user);
 }
 
-static int hfp_ag_init()
+static int hfp_ag_init(void)
 {
 	sim_hash = g_hash_table_new(g_direct_hash, g_direct_equal);
 
@@ -200,7 +200,7 @@ static int hfp_ag_init()
 	return 0;
 }
 
-static void hfp_ag_exit()
+static void hfp_ag_exit(void)
 {
 	__ofono_modemwatch_remove(modemwatch_id);
 	g_list_free(modems);
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/3] hfp_ag: Fix empty parameter list in functions
  2011-12-29 22:00 [PATCH 1/2] hfp_ag: Fix empty parameter list in functions Syam Sidhardhan
  2011-12-28 22:24 ` Denis Kenzior
@ 2011-12-29 22:00 ` Syam Sidhardhan
  2011-12-29 22:00 ` [PATCH 2/2] telit: Fix empty parameter list in function Syam Sidhardhan
  2011-12-29 22:00 ` [PATCH 3/3] " Syam Sidhardhan
  3 siblings, 0 replies; 6+ messages in thread
From: Syam Sidhardhan @ 2011-12-29 22:00 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 691 bytes --]

---
 plugins/hfp_ag.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/plugins/hfp_ag.c b/plugins/hfp_ag.c
index 4a244d9..c2d1d30 100644
--- a/plugins/hfp_ag.c
+++ b/plugins/hfp_ag.c
@@ -190,7 +190,7 @@ static void call_modemwatch(struct ofono_modem *modem, void *user)
 	modem_watch(modem, TRUE, user);
 }
 
-static int hfp_ag_init()
+static int hfp_ag_init(void)
 {
 	sim_hash = g_hash_table_new(g_direct_hash, g_direct_equal);
 
@@ -200,7 +200,7 @@ static int hfp_ag_init()
 	return 0;
 }
 
-static void hfp_ag_exit()
+static void hfp_ag_exit(void)
 {
 	__ofono_modemwatch_remove(modemwatch_id);
 	g_list_free(modems);
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/2] telit: Fix empty parameter list in function
  2011-12-29 22:00 [PATCH 1/2] hfp_ag: Fix empty parameter list in functions Syam Sidhardhan
  2011-12-28 22:24 ` Denis Kenzior
  2011-12-29 22:00 ` [PATCH 2/3] " Syam Sidhardhan
@ 2011-12-29 22:00 ` Syam Sidhardhan
  2011-12-28 22:25   ` Denis Kenzior
  2011-12-29 22:00 ` [PATCH 3/3] " Syam Sidhardhan
  3 siblings, 1 reply; 6+ messages in thread
From: Syam Sidhardhan @ 2011-12-29 22:00 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 490 bytes --]

---
 plugins/telit.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/plugins/telit.c b/plugins/telit.c
index 48087f2..6ae7249 100644
--- a/plugins/telit.c
+++ b/plugins/telit.c
@@ -436,7 +436,7 @@ static void rsen_disable_cb(gboolean ok, GAtResult *result, gpointer user_data)
 	telit_disable(modem);
 }
 
-static int telit_sap_open()
+static int telit_sap_open(void)
 {
 	const char *device = "/dev/ttyUSB4";
 	struct termios ti;
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 3/3] telit: Fix empty parameter list in function
  2011-12-29 22:00 [PATCH 1/2] hfp_ag: Fix empty parameter list in functions Syam Sidhardhan
                   ` (2 preceding siblings ...)
  2011-12-29 22:00 ` [PATCH 2/2] telit: Fix empty parameter list in function Syam Sidhardhan
@ 2011-12-29 22:00 ` Syam Sidhardhan
  3 siblings, 0 replies; 6+ messages in thread
From: Syam Sidhardhan @ 2011-12-29 22:00 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 490 bytes --]

---
 plugins/telit.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/plugins/telit.c b/plugins/telit.c
index 48087f2..6ae7249 100644
--- a/plugins/telit.c
+++ b/plugins/telit.c
@@ -436,7 +436,7 @@ static void rsen_disable_cb(gboolean ok, GAtResult *result, gpointer user_data)
 	telit_disable(modem);
 }
 
-static int telit_sap_open()
+static int telit_sap_open(void)
 {
 	const char *device = "/dev/ttyUSB4";
 	struct termios ti;
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-12-29 22:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-29 22:00 [PATCH 1/2] hfp_ag: Fix empty parameter list in functions Syam Sidhardhan
2011-12-28 22:24 ` Denis Kenzior
2011-12-29 22:00 ` [PATCH 2/3] " Syam Sidhardhan
2011-12-29 22:00 ` [PATCH 2/2] telit: Fix empty parameter list in function Syam Sidhardhan
2011-12-28 22:25   ` Denis Kenzior
2011-12-29 22:00 ` [PATCH 3/3] " Syam Sidhardhan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.