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

Commit 083ea668 authored by Zach Johnson's avatar Zach Johnson
Browse files

appl_trace_level is already set to the right value

Bug: 159815595
Tag: #refactor
Test: compile & verify basic functions working
Change-Id: I30c4402b1a719ff7f8829c8f2e8b3637ff3b4a26
parent 05bd6403
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ tBTA_SYS_CB bta_sys_cb;

/* trace level */
/* TODO Hard-coded trace levels -  Needs to be configurable */
uint8_t appl_trace_level = BT_TRACE_LEVEL_WARNING;  // APPL_INITIAL_TRACE_LEVEL;
uint8_t appl_trace_level = APPL_INITIAL_TRACE_LEVEL;
uint8_t btif_trace_level = BT_TRACE_LEVEL_WARNING;

/*******************************************************************************
@@ -69,8 +69,6 @@ uint8_t btif_trace_level = BT_TRACE_LEVEL_WARNING;
void bta_sys_init(void) {
  memset(&bta_sys_cb, 0, sizeof(tBTA_SYS_CB));

  appl_trace_level = APPL_INITIAL_TRACE_LEVEL;

#if (defined BTA_AR_INCLUDED) && (BTA_AR_INCLUDED == TRUE)
  bta_ar_init();
#endif