summaryrefslogtreecommitdiffstats
path: root/wifi
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-12-20 16:25:34 +0000
committerSteve Block <steveblock@google.com>2012-01-03 22:31:20 +0000
commitb381b932acfa441da5607f37ac4ef6573ed5be96 (patch)
treefc6ea0d261195f4a6d7137271ceefb9a2620de0e /wifi
parentda52930b89bb0e03948f3981e75f8727ea023587 (diff)
downloadhardware_libhardware_legacy-b381b932acfa441da5607f37ac4ef6573ed5be96.zip
hardware_libhardware_legacy-b381b932acfa441da5607f37ac4ef6573ed5be96.tar.gz
hardware_libhardware_legacy-b381b932acfa441da5607f37ac4ef6573ed5be96.tar.bz2
Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/156016 Bug: 5449033 Change-Id: I9dfdc3f00a5f4f5b6ef4c75280ce2594ab018577
Diffstat (limited to 'wifi')
-rw-r--r--wifi/wifi.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/wifi/wifi.c b/wifi/wifi.c
index dd216f1..1c469bc 100644
--- a/wifi/wifi.c
+++ b/wifi/wifi.c
@@ -152,7 +152,7 @@ static int rmmod(const char *modname)
}
if (ret != 0)
- LOGD("Unable to unload driver module \"%s\": %s\n",
+ ALOGD("Unable to unload driver module \"%s\": %s\n",
modname, strerror(errno));
return ret;
}
@@ -673,7 +673,7 @@ int wifi_send_command(int index, const char *cmd, char *reply, size_t *reply_len
}
ret = wpa_ctrl_request(ctrl_conn[index], cmd, strlen(cmd), reply, reply_len, NULL);
if (ret == -2) {
- LOGD("'%s' command timed out.\n", cmd);
+ ALOGD("'%s' command timed out.\n", cmd);
/* unblocks the monitor receive socket for termination */
write(exit_sockets[index][0], "T", 1);
return -2;
@@ -705,7 +705,7 @@ int wifi_ctrl_recv(int index, char *reply, size_t *reply_len)
if (rfds[0].revents & POLLIN) {
return wpa_ctrl_recv(monitor_conn[index], reply, reply_len);
} else {
- LOGD("Received on exit socket, terminate");
+ ALOGD("Received on exit socket, terminate");
return -1;
}
return 0;
@@ -721,7 +721,7 @@ int wifi_wait_on_socket(int index, char *buf, size_t buflen)
struct timeval *tptr;
if (monitor_conn[index] == NULL) {
- LOGD("Connection closed\n");
+ ALOGD("Connection closed\n");
strncpy(buf, WPA_EVENT_TERMINATING " - connection closed", buflen-1);
buf[buflen-1] = '\0';
return strlen(buf);
@@ -729,17 +729,17 @@ int wifi_wait_on_socket(int index, char *buf, size_t buflen)
result = wifi_ctrl_recv(index, buf, &nread);
if (result < 0) {
- LOGD("wifi_ctrl_recv failed: %s\n", strerror(errno));
+ ALOGD("wifi_ctrl_recv failed: %s\n", strerror(errno));
strncpy(buf, WPA_EVENT_TERMINATING " - recv error", buflen-1);
buf[buflen-1] = '\0';
return strlen(buf);
}
buf[nread] = '\0';
- /* LOGD("wait_for_event: result=%d nread=%d string=\"%s\"\n", result, nread, buf); */
+ /* ALOGD("wait_for_event: result=%d nread=%d string=\"%s\"\n", result, nread, buf); */
/* Check for EOF on the socket */
if (result == 0 && nread == 0) {
/* Fabricate an event to pass up */
- LOGD("Received EOF on supplicant socket\n");
+ ALOGD("Received EOF on supplicant socket\n");
strncpy(buf, WPA_EVENT_TERMINATING " - signal 0 received", buflen-1);
buf[buflen-1] = '\0';
return strlen(buf);