From 8d58a2e4b0ba2f224d5f9638473f81ba77aa6a5e Mon Sep 17 00:00:00 2001 From: Chris Manton Date: Wed, 19 Aug 2020 17:50:06 -0700 Subject: [PATCH] Streamline includes stack/l2cap/l2c_link Towards proper interfaces Bug: 163134718 Tag: #refactor Test: compile & verify basic functions working Change-Id: I4af96eddeb1dd30d10b766df1f617b4381a4e2f3 --- stack/l2cap/l2c_link.cc | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/stack/l2cap/l2c_link.cc b/stack/l2cap/l2c_link.cc index c344c8c72..b1501e75a 100644 --- a/stack/l2cap/l2c_link.cc +++ b/stack/l2cap/l2c_link.cc @@ -24,21 +24,13 @@ * ******************************************************************************/ -#include - -#include "bt_common.h" -#include "bt_types.h" -#include "btm_api.h" -#include "btm_int.h" -#include "device/include/controller.h" -#include "hcimsgs.h" -#include "l2c_api.h" -#include "l2c_int.h" -#include "l2cdefs.h" -#include "log/log.h" -#include "osi/include/osi.h" +#include + +#include "gd/os/log.h" #include "stack/btm/btm_dev.h" -#include "stack/include/acl_api.h" +#include "stack/l2cap/l2c_int.h" +#include "types/bt_transport.h" +#include "types/raw_address.h" static void l2c_link_send_to_lower(tL2C_LCB* p_lcb, BT_HDR* p_buf, tL2C_TX_COMPLETE_CB_INFO* p_cbi); -- 2.11.0