summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZach Johnson <zachoverflow@google.com>2014-12-26 17:51:03 -0800
committerAndre Eisenbach <eisenbach@google.com>2015-03-16 16:51:41 -0700
commit4a04780fd423d3c6673e9355af90ab60f31d9533 (patch)
tree52d87c97e9c872977a4fb62bb82eeee99e03a190
parentf73a207f52d32aff9842a0c83fbd513dd9ebfa16 (diff)
downloadandroid_system_bt-4a04780fd423d3c6673e9355af90ab60f31d9533.tar.gz
android_system_bt-4a04780fd423d3c6673e9355af90ab60f31d9533.tar.bz2
android_system_bt-4a04780fd423d3c6673e9355af90ab60f31d9533.zip
Canonicalize HCI logtags with bt_ prefix
-rw-r--r--doc/log_tags.md8
-rw-r--r--hci/src/hci_hal_h4.c2
-rw-r--r--hci/src/hci_hal_mct.c2
-rw-r--r--hci/src/hci_layer.c2
-rw-r--r--hci/src/packet_fragmenter.c2
5 files changed, 8 insertions, 8 deletions
diff --git a/doc/log_tags.md b/doc/log_tags.md
index 8a5f01f7e..0e37e706a 100644
--- a/doc/log_tags.md
+++ b/doc/log_tags.md
@@ -12,7 +12,11 @@ This document lists all of the log tags used by bluedroid.
* BtGatt.btif
* BtGatt.btif_test
* bt_gki
+* bt_hci
+* bt_hci_h4
* bt_hci_inject
+* bt_hci_mct
+* bt_hci_packet_fragmenter
* BTIF_AV
* BTIF_CORE
* BTIF_HF
@@ -48,10 +52,6 @@ This document lists all of the log tags used by bluedroid.
* btu_task
* BT_UTILS
* bt_vendor
-* hci_hal_h4
-* hci_hal_mct
-* hci_layer
-* hci_packet_fragmenter
* osi_eager_reader
* osi_future
* osi_semaphore
diff --git a/hci/src/hci_hal_h4.c b/hci/src/hci_hal_h4.c
index 0c3efeb4f..89c3f1cc7 100644
--- a/hci/src/hci_hal_h4.c
+++ b/hci/src/hci_hal_h4.c
@@ -16,7 +16,7 @@
*
******************************************************************************/
-#define LOG_TAG "hci_hal_h4"
+#define LOG_TAG "bt_hci_h4"
#include <assert.h>
diff --git a/hci/src/hci_hal_mct.c b/hci/src/hci_hal_mct.c
index f43afae98..6ba742e94 100644
--- a/hci/src/hci_hal_mct.c
+++ b/hci/src/hci_hal_mct.c
@@ -16,7 +16,7 @@
*
******************************************************************************/
-#define LOG_TAG "hci_hal_mct"
+#define LOG_TAG "bt_hci_mct"
#include <assert.h>
diff --git a/hci/src/hci_layer.c b/hci/src/hci_layer.c
index 7944bd8f9..fcf77d849 100644
--- a/hci/src/hci_layer.c
+++ b/hci/src/hci_layer.c
@@ -16,7 +16,7 @@
*
******************************************************************************/
-#define LOG_TAG "hci_layer"
+#define LOG_TAG "bt_hci"
#include <assert.h>
#include <cutils/properties.h>
diff --git a/hci/src/packet_fragmenter.c b/hci/src/packet_fragmenter.c
index 1cee3c10f..5840f01c3 100644
--- a/hci/src/packet_fragmenter.c
+++ b/hci/src/packet_fragmenter.c
@@ -16,7 +16,7 @@
*
******************************************************************************/
-#define LOG_TAG "hci_packet_fragmenter"
+#define LOG_TAG "bt_hci_packet_fragmenter"
#include <assert.h>