diff options
author | Sharvil Nanavati <sharvil@google.com> | 2014-05-04 01:33:15 -0700 |
---|---|---|
committer | Sharvil Nanavati <sharvil@google.com> | 2014-06-19 06:44:38 +0000 |
commit | d5bba906b0704cd60e824613bd2e438935ba5d89 (patch) | |
tree | 04a6be6c0c955ec7a610b6024a57e72d9d9ee956 /stack/gap/gap_api.c | |
parent | a51c9d9d225e41fe36a0133f1c17fd981ea59c1d (diff) | |
download | android_system_bt-d5bba906b0704cd60e824613bd2e438935ba5d89.tar.gz android_system_bt-d5bba906b0704cd60e824613bd2e438935ba5d89.tar.bz2 android_system_bt-d5bba906b0704cd60e824613bd2e438935ba5d89.zip |
Logging cleanup: RFCOMM and GAP.
Change-Id: I83fda4f0805aaeb2ca060870449868879edcff78
Diffstat (limited to 'stack/gap/gap_api.c')
-rw-r--r-- | stack/gap/gap_api.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/stack/gap/gap_api.c b/stack/gap/gap_api.c index e04fc8e05..530d1413a 100644 --- a/stack/gap/gap_api.c +++ b/stack/gap/gap_api.c @@ -348,7 +348,7 @@ UINT16 GAP_SetPairableMode (UINT16 mode, BOOLEAN connect_only_paired) } else { - GAP_TRACE_ERROR1 ("GAP_SetPairableMode: illegal mode %d", mode); + GAP_TRACE_ERROR ("GAP_SetPairableMode: illegal mode %d", mode); status = GAP_ERR_ILL_MODE; } return (status); @@ -604,13 +604,13 @@ UINT16 GAP_GetFirstInquiryResult(tGAP_INQ_RESULTS *p_results) memcpy(p_results, &gap_cb.cur_inqptr->results, sizeof(tBTM_INQ_RESULTS)); ptr = (UINT8 *)gap_cb.cur_inqptr->results.remote_bd_addr; - GAP_TRACE_EVENT6("GAP_GetFirstInqResult %02x%02x%02x%02x%02x%02x", + GAP_TRACE_EVENT("GAP_GetFirstInqResult %02x%02x%02x%02x%02x%02x", ptr[0],ptr[1],ptr[2],ptr[3],ptr[4],ptr[5]); return(BT_PASS); } else { - GAP_TRACE_EVENT0("GAP_FirstInqResults: No BD_ADDRs Found"); + GAP_TRACE_EVENT("GAP_FirstInqResults: No BD_ADDRs Found"); memset(p_results, 0, sizeof(tBTM_INQ_RESULTS)); return(GAP_EOINQDB); } @@ -643,14 +643,14 @@ UINT16 GAP_GetNextInquiryResult(tGAP_INQ_RESULTS *p_results) sizeof(tGAP_INQ_RESULTS)); ptr = (UINT8 *)gap_cb.cur_inqptr->results.remote_bd_addr; - GAP_TRACE_EVENT6("GAP_GetNextInqResult %02x%02x%02x%02x%02x%02x", + GAP_TRACE_EVENT("GAP_GetNextInqResult %02x%02x%02x%02x%02x%02x", ptr[0],ptr[1],ptr[2],ptr[3],ptr[4],ptr[5]); return(BT_PASS); } else { - GAP_TRACE_EVENT0("GAP_NextInqResults: No BD_ADDRs Found"); + GAP_TRACE_EVENT("GAP_NextInqResults: No BD_ADDRs Found"); memset(p_results, 0, sizeof(tBTM_INQ_RESULTS)); return(GAP_EOINQDB); } |