summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/phHciNfc_DevMgmt.c2
-rw-r--r--src/phLibNfc.c2
-rw-r--r--src/phLlcNfc_Interface.c10
3 files changed, 7 insertions, 7 deletions
diff --git a/src/phHciNfc_DevMgmt.c b/src/phHciNfc_DevMgmt.c
index 9517741..358f8eb 100644
--- a/src/phHciNfc_DevMgmt.c
+++ b/src/phHciNfc_DevMgmt.c
@@ -1370,7 +1370,7 @@ phHciNfc_Recv_DevMgmt_Event(
case NXP_EVT_INFO_MEM_VIOLATION:
{
event_info.eventType = NFC_INFO_MEM_VIOLATION;
- LOGW("Your NFC controller is kinda hosed, take it to npelly@ to fix");
+ ALOGW("Your NFC controller is kinda hosed, take it to npelly@ to fix");
break;
}
case NXP_EVT_INFO_TEMP_OVERHEAT:
diff --git a/src/phLibNfc.c b/src/phLibNfc.c
index 92bdc40..1012acb 100644
--- a/src/phLibNfc.c
+++ b/src/phLibNfc.c
@@ -870,7 +870,7 @@ NFCSTATUS phLibNfc_Mgt_GetstackCapabilities(
/* Check the firmware version */
if (nxp_nfc_full_version == NULL) {
// Couldn't load firmware, just pretend we're up to date.
- LOGW("Firmware image not available: this device might be running old NFC firmware!");
+ ALOGW("Firmware image not available: this device might be running old NFC firmware!");
phLibNfc_StackCapabilities->psDevCapabilities.firmware_update_info = 0;
} else {
phLibNfc_StackCapabilities->psDevCapabilities.firmware_update_info = memcmp(phLibNfc_StackCapabilities->psDevCapabilities.full_version, nxp_nfc_full_version,
diff --git a/src/phLlcNfc_Interface.c b/src/phLlcNfc_Interface.c
index 175462d..9e92163 100644
--- a/src/phLlcNfc_Interface.c
+++ b/src/phLlcNfc_Interface.c
@@ -786,7 +786,7 @@ phLlcNfc_RdResp_Cb(
else if (ps_frame_info->recv_error_count <
PH_LLCNFC_MAX_REJ_RETRY_COUNT)
{
- LOGW("LLC bad crc");
+ ALOGW("LLC bad crc");
PH_LLCNFC_PRINT("CRC ERROR RECVD \n");
PH_LLCNFC_DEBUG("RECV ERROR COUNT : 0x%02X\n", ps_frame_info->recv_error_count);
@@ -883,7 +883,7 @@ phLlcNfc_RdResp_Cb(
value is greater than (0x21 - 1), then pend a read to
get 1 byte again
*/
- LOGW("bad LLC length byte %x\n", *(pCompInfo->buffer));
+ ALOGW("bad LLC length byte %x\n", *(pCompInfo->buffer));
ps_frame_info->recv_error_count = (uint8_t)
(ps_frame_info->recv_error_count + 1);
libnfc_llc_error_count++;
@@ -895,7 +895,7 @@ phLlcNfc_RdResp_Cb(
}
else
{
- LOGW("unknown LLC error1");
+ ALOGW("unknown LLC error1");
ps_frame_info->recv_error_count = (uint8_t)
(ps_frame_info->recv_error_count + 1);
libnfc_llc_error_count++;
@@ -919,7 +919,7 @@ phLlcNfc_RdResp_Cb(
}
} else if (NFCSTATUS_READ_FAILED == pCompInfo->status) {
// partial read - try reading the length byte again
- LOGW("LLC length mis-match\n");
+ ALOGW("LLC length mis-match\n");
ps_frame_info->recv_error_count = (uint8_t)
(ps_frame_info->recv_error_count + 1);
libnfc_llc_error_count++;
@@ -931,7 +931,7 @@ phLlcNfc_RdResp_Cb(
}
else
{
- LOGW("unknown LLC error2");
+ ALOGW("unknown LLC error2");
ps_frame_info->recv_error_count = (uint8_t)
(ps_frame_info->recv_error_count + 1);
libnfc_llc_error_count++;