From 073362e1a87d995a0257eb8386ef8e3e91eec628 Mon Sep 17 00:00:00 2001 From: Matthew Xie Date: Thu, 1 Nov 2012 17:14:40 -0700 Subject: 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 --- btif/src/btif_hh.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'btif/src') 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) -- cgit v1.1