summaryrefslogtreecommitdiffstats
path: root/btif/src
diff options
context:
space:
mode:
authorMatthew Xie <mattx@google.com>2012-11-01 17:14:40 -0700
committerMatthew Xie <mattx@google.com>2012-11-01 17:48:22 -0700
commit073362e1a87d995a0257eb8386ef8e3e91eec628 (patch)
tree882f2d152f0dc5ecacb900be9f33564f0a495f5b /btif/src
parent02f8bc6eeb93809da4a7dee62fd092095a11d885 (diff)
downloadexternal_bluetooth_bluedroid-073362e1a87d995a0257eb8386ef8e3e91eec628.zip
external_bluetooth_bluedroid-073362e1a87d995a0257eb8386ef8e3e91eec628.tar.gz
external_bluetooth_bluedroid-073362e1a87d995a0257eb8386ef8e3e91eec628.tar.bz2
Turn off hid debug messages
Some of the message should be debug instead of warning. Some of the messages were in wrong log message module bug 7174712 Change-Id: Ib57ae6255bdbe53d2d931b1003a47cd6cadcb425
Diffstat (limited to 'btif/src')
-rw-r--r--btif/src/btif_hh.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/btif/src/btif_hh.c b/btif/src/btif_hh.c
index 5d44ee0..61432b8 100644
--- a/btif/src/btif_hh.c
+++ b/btif/src/btif_hh.c
@@ -349,7 +349,6 @@ static btif_hh_device_t *btif_hh_find_dev_by_handle(UINT8 handle)
btif_hh_device_t *btif_hh_find_connected_dev_by_handle(UINT8 handle)
{
UINT32 i;
- BTIF_TRACE_WARNING2("%s: handle = %d", __FUNCTION__, handle);
for (i = 0; i < BTIF_HH_MAX_HID; i++) {
if (btif_hh_cb.devices[i].dev_status == BTHH_CONN_STATE_CONNECTED &&
btif_hh_cb.devices[i].dev_handle == handle)
@@ -371,7 +370,6 @@ btif_hh_device_t *btif_hh_find_connected_dev_by_handle(UINT8 handle)
static btif_hh_device_t *btif_hh_find_dev_by_bda(bt_bdaddr_t *bd_addr)
{
UINT32 i;
- BTIF_TRACE_EVENT1("%s", __FUNCTION__);
for (i = 0; i < BTIF_HH_MAX_HID; i++) {
if (btif_hh_cb.devices[i].dev_status != BTHH_CONN_STATE_UNKNOWN &&
memcmp(&(btif_hh_cb.devices[i].bd_addr), bd_addr, BD_ADDR_LEN) == 0)
@@ -393,7 +391,6 @@ static btif_hh_device_t *btif_hh_find_dev_by_bda(bt_bdaddr_t *bd_addr)
static btif_hh_device_t *btif_hh_find_connected_dev_by_bda(bt_bdaddr_t *bd_addr)
{
UINT32 i;
- BTIF_TRACE_EVENT1("%s", __FUNCTION__);
for (i = 0; i < BTIF_HH_MAX_HID; i++) {
if (btif_hh_cb.devices[i].dev_status == BTHH_CONN_STATE_CONNECTED &&
memcmp(&(btif_hh_cb.devices[i].bd_addr), bd_addr, BD_ADDR_LEN) == 0)