All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] android/client: Fix double initialize of bluetooth
@ 2014-11-26 11:43 Grzegorz Kolodziejczyk
  2014-11-26 11:43 ` [PATCH 2/2] android/client: Fix no closing bt, audio dev on exit Grzegorz Kolodziejczyk
  2014-12-03  8:14 ` [PATCH 1/2] android/client: Fix double initialize of bluetooth Szymon Janc
  0 siblings, 2 replies; 3+ messages in thread
From: Grzegorz Kolodziejczyk @ 2014-11-26 11:43 UTC (permalink / raw)
  To: linux-bluetooth

Profile initialization loop should omit already initialized profiles
by process line command.
---
 android/client/haltest.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/android/client/haltest.c b/android/client/haltest.c
index add1978..f19e671 100644
--- a/android/client/haltest.c
+++ b/android/client/haltest.c
@@ -422,7 +422,7 @@ static void init(void)
 	}
 
 	/* Init what is available to init */
-	for (i = 2; i < NELEM(interfaces) - 1; ++i) {
+	for (i = 3; i < NELEM(interfaces) - 1; ++i) {
 		m = get_interface_method(interfaces[i]->name, "init");
 		if (m != NULL)
 			m->func(2, argv);
-- 
1.9.3


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

end of thread, other threads:[~2014-12-03  8:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-11-26 11:43 [PATCH 1/2] android/client: Fix double initialize of bluetooth Grzegorz Kolodziejczyk
2014-11-26 11:43 ` [PATCH 2/2] android/client: Fix no closing bt, audio dev on exit Grzegorz Kolodziejczyk
2014-12-03  8:14 ` [PATCH 1/2] android/client: Fix double initialize of bluetooth Szymon Janc

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.