All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] plugins: rm unneeded exits/sleeps from ril plugin
@ 2015-11-19 22:16 Tony Espy
  2015-11-19 22:44 ` Denis Kenzior
  0 siblings, 1 reply; 2+ messages in thread
From: Tony Espy @ 2015-11-19 22:16 UTC (permalink / raw)
  To: ofono

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

---
 plugins/ril.c | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/plugins/ril.c b/plugins/ril.c
index 8ccf01a..9bf86c5 100644
--- a/plugins/ril.c
+++ b/plugins/ril.c
@@ -142,13 +142,9 @@ static void ril_radio_state_changed(struct ril_msg *message, gpointer user_data)
 			 * too fast re-spawns, then exit with error to make
 			 * upstart re-start ofono.
 			 */
-			if (rd->ofono_online) {
+			if (rd->ofono_online)
 				ofono_error("%s: radio self-powered off!",
 						__func__);
-				sleep(5);
-				exit(1);
-			}
-			break;
 		}
 	}
 }
@@ -398,8 +394,8 @@ static gboolean connect_rild(gpointer user_data)
 		if (create_gril(modem) < 0)
 			return TRUE;
 	} else {
-		ofono_error("Exiting, can't connect to rild.");
-		exit(0);
+		ofono_error("Failed to connect to rild.");
+		return TRUE;
 	}
 
 	return FALSE;
-- 
2.1.4


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

* Re: [PATCH v2] plugins: rm unneeded exits/sleeps from ril plugin
  2015-11-19 22:16 [PATCH v2] plugins: rm unneeded exits/sleeps from ril plugin Tony Espy
@ 2015-11-19 22:44 ` Denis Kenzior
  0 siblings, 0 replies; 2+ messages in thread
From: Denis Kenzior @ 2015-11-19 22:44 UTC (permalink / raw)
  To: ofono

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

Hi Tony,

On 11/19/2015 04:16 PM, Tony Espy wrote:
> ---
>   plugins/ril.c | 10 +++-------
>   1 file changed, 3 insertions(+), 7 deletions(-)
>

Applied, thanks.

Regards,
-Denis


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

end of thread, other threads:[~2015-11-19 22:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-19 22:16 [PATCH v2] plugins: rm unneeded exits/sleeps from ril plugin Tony Espy
2015-11-19 22:44 ` Denis Kenzior

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.