diff options
author | Vinit Deshpande <vinitd@google.com> | 2015-06-09 17:12:05 -0700 |
---|---|---|
committer | Vinit Deshpande <vinitd@google.com> | 2015-06-09 17:12:05 -0700 |
commit | e16283338c9f0e8798228c400e31415d612f7d09 (patch) | |
tree | 1b8882c741f6b8a16e382e773291f9e5007f13e0 /bcmdhd/wifi_hal | |
parent | 940146c69912ab98f42d412f00438ef193647ffd (diff) | |
download | hardware_broadcom_wlan-e16283338c9f0e8798228c400e31415d612f7d09.zip hardware_broadcom_wlan-e16283338c9f0e8798228c400e31415d612f7d09.tar.gz hardware_broadcom_wlan-e16283338c9f0e8798228c400e31415d612f7d09.tar.bz2 |
Remove confusing "Error polling socket" log
There are lots of legitimate cases where poll()
returns error; so this log isn't useful.
Bug: 21733400
Change-Id: If8dee9812e4d50c11c47f3daebe0dba33b6d6f8f
Diffstat (limited to 'bcmdhd/wifi_hal')
-rw-r--r-- | bcmdhd/wifi_hal/wifi_hal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bcmdhd/wifi_hal/wifi_hal.cpp b/bcmdhd/wifi_hal/wifi_hal.cpp index fcc947a..41f8e10 100644 --- a/bcmdhd/wifi_hal/wifi_hal.cpp +++ b/bcmdhd/wifi_hal/wifi_hal.cpp @@ -336,7 +336,7 @@ void wifi_event_loop(wifi_handle handle) // ALOGI("Polling socket"); int result = poll(pfd, 2, timeout); if (result < 0) { - ALOGE("Error polling socket"); + // ALOGE("Error polling socket"); } else if (pfd[0].revents & POLLERR) { ALOGE("POLL Error; error no = %d", errno); int result2 = read(pfd[0].fd, buf, sizeof(buf)); |