Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c1c1eb56 authored by Chris Manton's avatar Chris Manton Committed by Automerger Merge Worker
Browse files

Re-log btif/src/stack_manager am: 603bea34 am: 6469d13a

Original change: https://android-review.googlesource.com/c/platform/system/bt/+/1670988

Change-Id: I1e46fe17b1eecb0911afaee388ec8e498e934ccb
parents eb767fe5 6469d13a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -197,10 +197,10 @@ inline const module_t* get_local_module(const char* name) {
static void event_init_stack(void* context) {
  semaphore_t* semaphore = (semaphore_t*)context;

  LOG_INFO("%s is initializing the stack", __func__);
  LOG_INFO("is initializing the stack");

  if (stack_is_initialized) {
    LOG_INFO("%s found the stack already in initialized state", __func__);
    LOG_INFO("found the stack already in initialized state");
  } else {
    module_management_start();

@@ -220,7 +220,7 @@ static void event_init_stack(void* context) {
    stack_is_initialized = true;
  }

  LOG_INFO("%s finished", __func__);
  LOG_INFO("finished");

  if (semaphore) semaphore_post(semaphore);
}