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

Commit 5322117a authored by Chris Manton's avatar Chris Manton Committed by Myles Watson
Browse files

Propagate ACl connected through to BTA uplink

Bug: 173769100
Tag: #refactor
Test: gd/cert/run --host

Change-Id: Ie5e3e056118dfa050fe4d90693338e4b614caac0
parent d18404c9
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
@@ -2655,6 +2655,22 @@ void btm_acl_connected(const RawAddress& bda, uint16_t handle,
  btm_sec_connected(bda, handle, status, enc_mode);
  btm_acl_set_paging(false);
  l2c_link_hci_conn_comp(status, handle, bda);

  /*
   * The legacy code path informs the upper layer via the BTA
   * layer after all relevant read_remote_ commands are complete.
   * The GD code path has ownership of the read_remote_ commands
   * and thus may inform the upper layers about the connection.
   */
  if (bluetooth::shim::is_gd_acl_enabled()) {
    tACL_CONN* p_acl = internal_.acl_get_connection_from_handle(handle);
    if (p_acl != nullptr) {
      p_acl->link_up_issued = true;
      BTA_dm_acl_up(p_acl->remote_addr, p_acl->transport);
    } else {
      LOG_WARN("Unable to find active acl");
    }
  }
}

void btm_acl_disconnected(tHCI_STATUS status, uint16_t handle,