summaryrefslogtreecommitdiffstats
path: root/stack/sdp/sdp_utils.c
diff options
context:
space:
mode:
authorSharvil Nanavati <sharvil@google.com>2014-05-04 01:08:21 -0700
committerSharvil Nanavati <sharvil@google.com>2014-06-19 06:44:07 +0000
commita51c9d9d225e41fe36a0133f1c17fd981ea59c1d (patch)
tree70d110f227f39796b8c94651496b5dce469d45c6 /stack/sdp/sdp_utils.c
parentf219040fb458fe4bb19d55d39c28d4535865a908 (diff)
downloadandroid_system_bt-a51c9d9d225e41fe36a0133f1c17fd981ea59c1d.tar.gz
android_system_bt-a51c9d9d225e41fe36a0133f1c17fd981ea59c1d.tar.bz2
android_system_bt-a51c9d9d225e41fe36a0133f1c17fd981ea59c1d.zip
Logging cleanup: L2CAP and SDP.
Change-Id: I62b5d4f330312dc466a758cb554952017f899696
Diffstat (limited to 'stack/sdp/sdp_utils.c')
-rw-r--r--stack/sdp/sdp_utils.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/stack/sdp/sdp_utils.c b/stack/sdp/sdp_utils.c
index 842e75784..7cc9404b8 100644
--- a/stack/sdp/sdp_utils.c
+++ b/stack/sdp/sdp_utils.c
@@ -156,7 +156,7 @@ void sdpu_release_ccb (tCONN_CB *p_ccb)
/* Free the response buffer */
if (p_ccb->rsp_list)
{
- SDP_TRACE_DEBUG0("releasing SDP rsp_list");
+ SDP_TRACE_DEBUG("releasing SDP rsp_list");
GKI_freebuf(p_ccb->rsp_list);
p_ccb->rsp_list = NULL;
@@ -317,13 +317,13 @@ void sdpu_build_n_send_error (tCONN_CB *p_ccb, UINT16 trans_num, UINT16 error_co
BT_HDR *p_buf;
- SDP_TRACE_WARNING2 ("SDP - sdpu_build_n_send_error code: 0x%x CID: 0x%x",
+ SDP_TRACE_WARNING ("SDP - sdpu_build_n_send_error code: 0x%x CID: 0x%x",
error_code, p_ccb->connection_id);
/* Get a buffer to use to build and send the packet to L2CAP */
if ((p_buf = (BT_HDR *)GKI_getpoolbuf (SDP_POOL_ID)) == NULL)
{
- SDP_TRACE_ERROR0 ("SDP - no buf for err msg");
+ SDP_TRACE_ERROR ("SDP - no buf for err msg");
return;
}
p_buf->offset = L2CAP_MIN_OFFSET;
@@ -1006,7 +1006,7 @@ UINT8 *sdpu_build_partial_attrib_entry (UINT8 *p_out, tSDP_ATTRIBUTE *p_attr, UI
if ((p_attr_buff = (UINT8 *) GKI_getbuf(sizeof(UINT8) * SDP_MAX_ATTR_LEN )) == NULL)
{
- SDP_TRACE_ERROR0("sdpu_build_partial_attrib_entry cannot get a buffer!");
+ SDP_TRACE_ERROR("sdpu_build_partial_attrib_entry cannot get a buffer!");
return NULL;
}
p_tmp_attr = p_attr_buff;