From 3cc15e32090f5850c3188c02a1fb06e34558178a Mon Sep 17 00:00:00 2001 From: Chris Manton Date: Tue, 5 Jan 2021 18:10:42 -0800 Subject: [PATCH] Declare stack/include/btm_::init/free Towards readable code Bug: 163134718 Tag: #refactor Test: gd/cert/run --host Change-Id: I7cb8e5813ae2657ffd24f01fe0d9037e06741e3f --- stack/include/btm_api.h | 3 +++ stack/include/btm_ble_api.h | 3 +++ 2 files changed, 6 insertions(+) diff --git a/stack/include/btm_api.h b/stack/include/btm_api.h index 76d30c88f..021092414 100644 --- a/stack/include/btm_api.h +++ b/stack/include/btm_api.h @@ -33,6 +33,9 @@ #include "types/bt_transport.h" #include "types/raw_address.h" +void btm_init(); +void btm_free(); + /***************************************************************************** * DEVICE CONTROL and COMMON ****************************************************************************/ diff --git a/stack/include/btm_ble_api.h b/stack/include/btm_ble_api.h index 06c4bb757..263136f62 100644 --- a/stack/include/btm_ble_api.h +++ b/stack/include/btm_ble_api.h @@ -35,6 +35,9 @@ #include "stack/btm/neighbor_inquiry.h" #include "types/bt_transport.h" +void btm_ble_init(); +void btm_ble_free(); + /***************************************************************************** * EXTERNAL FUNCTION DECLARATIONS ****************************************************************************/ -- 2.11.0