diff options
author | Paul Kocialkowski <contact@paulk.fr> | 2013-12-20 22:29:42 +0100 |
---|---|---|
committer | Paul Kocialkowski <contact@paulk.fr> | 2013-12-20 22:29:42 +0100 |
commit | c8408cd2c116b0b99a399282032b6607a1318b84 (patch) | |
tree | 536ad6926d7ab2808ed35d5f9cac69ce76c5d9a6 /sat.c | |
parent | 8d0081ae32ea13821166bb11c6034e966c23a5cc (diff) | |
download | hardware_ril_samsung-ril-replicant-4.2-0001.zip hardware_ril_samsung-ril-replicant-4.2-0001.tar.gz hardware_ril_samsung-ril-replicant-4.2-0001.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 'sat.c')
-rw-r--r-- | sat.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -64,7 +64,7 @@ void ipc_sat_proactive_cmd_sol(struct ipc_message_info *info) if (sw1 == 0x90 && sw2 == 0x00) { ril_request_unsolicited(RIL_UNSOL_STK_SESSION_END, NULL, 0); } else { - LOGE("%s: unhandled response sw1=%02x sw2=%02x", __func__, sw1, sw2); + RIL_LOGE("%s: unhandled response sw1=%02x sw2=%02x", __func__, sw1, sw2); } return; @@ -81,7 +81,7 @@ void ipc_sat_proactive_cmd(struct ipc_message_info *info) } else if (info->type == IPC_TYPE_RESP) { ipc_sat_proactive_cmd_sol(info); } else { - LOGE("%s: unhandled proactive command response type %d",__func__, info->type); + RIL_LOGE("%s: unhandled proactive command response type %d",__func__, info->type); } } @@ -95,7 +95,7 @@ void ril_request_stk_send_terminal_response(RIL_Token t, void *data, size_t leng size = strlen(data) / 2; if (size > 255) { - LOGE("%s: data exceeds maximum length", __func__); + RIL_LOGE("%s: data exceeds maximum length", __func__); goto error; } @@ -124,7 +124,7 @@ void ril_request_stk_send_envelope_command(RIL_Token t, void *data, size_t lengt size = strlen(data) / 2; if (size > 255) { - LOGE("%s: data exceeds maximum length", __func__); + RIL_LOGE("%s: data exceeds maximum length", __func__); goto error; } |