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 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html