From: Hansong Zhang Date: Wed, 9 Sep 2020 19:33:30 +0000 (-0700) Subject: Remove unused API in l2c_api shim X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=bd0645cff3100f190ba3b55ee8fe461fdac96031;p=android-x86%2Fsystem-bt.git Remove unused API in l2c_api shim Bug: 159815595 Tag: #refactor Test: compile & verify basic functions working Change-Id: Ieeae2677b6ed300d9878508f18f55a23e54b5f06 --- diff --git a/main/shim/l2c_api.cc b/main/shim/l2c_api.cc index 37193299a..3cab1c7fe 100644 --- a/main/shim/l2c_api.cc +++ b/main/shim/l2c_api.cc @@ -179,15 +179,6 @@ bool bluetooth::shim::L2CA_GetPeerLECocConfig(uint16_t lcid, return false; } -/** - * Channel Data Writes - */ -bool bluetooth::shim::L2CA_SetConnectionCallbacks( - uint16_t cid, const tL2CAP_APPL_INFO* callbacks) { - LOG_INFO("Unsupported API %s", __func__); - return false; -} - uint8_t bluetooth::shim::L2CA_DataWrite(uint16_t cid, BT_HDR* p_data) { bool write_success = shim_l2cap.Write(cid, p_data); return write_success ? L2CAP_DW_SUCCESS : L2CAP_DW_FAILED; diff --git a/main/shim/l2c_api.h b/main/shim/l2c_api.h index 028861f0e..e28436e85 100644 --- a/main/shim/l2c_api.h +++ b/main/shim/l2c_api.h @@ -203,14 +203,6 @@ bool L2CA_ConnectLECocRsp(const RawAddress& p_bd_addr, uint8_t id, ******************************************************************************/ bool L2CA_GetPeerLECocConfig(uint16_t lcid, tL2CAP_LE_CFG_INFO* peer_cfg); -// This function sets the callback routines for the L2CAP connection referred to -// by |local_cid|. The callback routines can only be modified for outgoing -// connections established by |L2CA_ConnectReq| or accepted incoming -// connections. |callbacks| must not be NULL. This function returns true if the -// callbacks could be updated, false if not (e.g. |local_cid| was not found). -bool L2CA_SetConnectionCallbacks(uint16_t local_cid, - const tL2CAP_APPL_INFO* callbacks); - /******************************************************************************* * * Function L2CA_ErtmConnectRsp