summaryrefslogtreecommitdiffstats
path: root/hci/src/hci_h4.c
diff options
context:
space:
mode:
Diffstat (limited to 'hci/src/hci_h4.c')
-rw-r--r--hci/src/hci_h4.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/hci/src/hci_h4.c b/hci/src/hci_h4.c
index e18ee6a..b10d173 100644
--- a/hci/src/hci_h4.c
+++ b/hci/src/hci_h4.c
@@ -259,7 +259,7 @@ void get_acl_data_length_cback(void *p_mem)
if (bt_hc_cbacks)
{
bt_hc_cbacks->dealloc((TRANSAC) p_buf, (char *) (p_buf + 1));
- LOGE("vendor lib postload completed");
+ ALOGE("vendor lib postload completed");
bt_hc_cbacks->postload_cb(NULL, BT_HC_POSTLOAD_SUCCESS);
}
}
@@ -389,7 +389,7 @@ static HC_BT_HDR *acl_rx_frame_buffer_alloc (void)
* Drop it. */
if (p_return_buf)
{
- LOGW("H4 - dropping incomplete ACL frame");
+ ALOGW("H4 - dropping incomplete ACL frame");
utils_remove_from_queue(&(p_cb->acl_rx_q), p_return_buf);
@@ -788,7 +788,7 @@ uint16_t hci_h4_receive_msg(void)
{
/* Unknown HCI message type */
/* Drop this byte */
- LOGE("[h4] Unknown HCI message type drop this byte 0x%x", byte);
+ ALOGE("[h4] Unknown HCI message type drop this byte 0x%x", byte);
break;
}
@@ -871,7 +871,7 @@ uint16_t hci_h4_receive_msg(void)
if (p_cb->p_rcv_msg == NULL)
{
/* Unable to acquire message buffer. */
- LOGE( \
+ ALOGE( \
"H4: Unable to acquire buffer for incoming HCI message." \
);
@@ -1003,7 +1003,7 @@ uint8_t hci_h4_send_int_cmd(uint16_t opcode, HC_BT_HDR *p_buf, \
{
if (h4_cb.int_cmd_rsp_pending > INT_CMD_PKT_MAX_COUNT)
{
- LOGE( \
+ ALOGE( \
"Allow only %d outstanding internal commands at a time [Reject 0x%04X]"\
, INT_CMD_PKT_MAX_COUNT, opcode);
return FALSE;
@@ -1067,7 +1067,7 @@ void hci_h4_get_acl_data_length(void)
if (bt_hc_cbacks)
{
- LOGE("vendor lib postload aborted");
+ ALOGE("vendor lib postload aborted");
bt_hc_cbacks->postload_cb(NULL, BT_HC_POSTLOAD_FAIL);
}
}