summaryrefslogtreecommitdiffstats
path: root/gen.c
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2013-12-20 22:29:42 +0100
committerPaul Kocialkowski <contact@paulk.fr>2013-12-20 22:29:42 +0100
commitc8408cd2c116b0b99a399282032b6607a1318b84 (patch)
tree536ad6926d7ab2808ed35d5f9cac69ce76c5d9a6 /gen.c
parent8d0081ae32ea13821166bb11c6034e966c23a5cc (diff)
downloadhardware_ril_samsung-ril-c8408cd2c116b0b99a399282032b6607a1318b84.zip
hardware_ril_samsung-ril-c8408cd2c116b0b99a399282032b6607a1318b84.tar.gz
hardware_ril_samsung-ril-c8408cd2c116b0b99a399282032b6607a1318b84.tar.bz2
RIL_LOG macro to log messagesreplicant-4.2-0002replicant-4.2-0001
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'gen.c')
-rw-r--r--gen.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gen.c b/gen.c
index 67fca93..596560c 100644
--- a/gen.c
+++ b/gen.c
@@ -158,18 +158,18 @@ void ipc_gen_phone_res(struct ipc_message_info *info)
expect = ipc_gen_phone_res_expect_info_find_aseq(info->aseq);
if (expect == NULL) {
- LOGD("aseq: 0x%x not found in the IPC_GEN_PHONE_RES queue", info->aseq);
+ RIL_LOGD("aseq: 0x%x not found in the IPC_GEN_PHONE_RES queue", info->aseq);
return;
}
- LOGD("aseq: 0x%x found in the IPC_GEN_PHONE_RES queue!", info->aseq);
+ RIL_LOGD("aseq: 0x%x found in the IPC_GEN_PHONE_RES queue!", info->aseq);
if (expect->command != IPC_COMMAND(phone_res)) {
- LOGE("IPC_GEN_PHONE_RES aseq (0x%x) doesn't match the queued one with command (0x%x)",
+ RIL_LOGE("IPC_GEN_PHONE_RES aseq (0x%x) doesn't match the queued one with command (0x%x)",
expect->aseq, expect->command);
if (expect->func != NULL) {
- LOGE("Not safe to run the custom function, reporting generic failure");
+ RIL_LOGE("Not safe to run the custom function, reporting generic failure");
ril_request_complete(ril_request_get_token(expect->aseq), RIL_E_GENERIC_FAILURE, NULL, 0);
goto unregister;
}