Skip to content
Snippets Groups Projects
Commit f93fece9 authored by Chris Manton's avatar Chris Manton
Browse files

Add layer of indirection to set hal_callbacks

Used for test injection

Bug: 163134718
Test: gd/cert/run
Tag: #refactor
BYPASS_LONG_LINES_REASON: Bluetooth likes 120 lines

Change-Id: I1cfd4103bfe6b20aabff2885e5ace106e11b04e8
parent 975674c2
No related branches found
No related tags found
No related merge requests found
......@@ -137,6 +137,7 @@ extern VolumeControlInterface* btif_volume_control_get_interface();
******************************************************************************/
static bool interface_ready(void) { return bt_hal_cbacks != NULL; }
void set_hal_cbacks(bt_callbacks_t* callbacks) { bt_hal_cbacks = callbacks; }
static bool is_profile(const char* p1, const char* p2) {
CHECK(p1);
......@@ -167,7 +168,8 @@ static int init(bt_callbacks_t* callbacks, bool start_restricted,
allocation_tracker_init();
#endif
bt_hal_cbacks = callbacks;
set_hal_cbacks(callbacks);
restricted_mode = start_restricted;
common_criteria_mode = is_common_criteria_mode;
common_criteria_config_compare_result = config_compare_result;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment