diff options
author | Etan Cohen <etancohen@google.com> | 2015-04-23 16:59:21 -0700 |
---|---|---|
committer | Etan Cohen <etancohen@google.com> | 2015-04-24 14:30:14 -0700 |
commit | bc28c1d9af9673352208a2a75ff8d4d9ac02d718 (patch) | |
tree | c49db597f35e9fd8752aa1d40c41a1f5c886e6d8 | |
parent | 1184763d6c24a6b393417eb4e8e7838f71bb97a5 (diff) | |
download | hardware_broadcom_wlan-bc28c1d9af9673352208a2a75ff8d4d9ac02d718.zip hardware_broadcom_wlan-bc28c1d9af9673352208a2a75ff8d4d9ac02d718.tar.gz hardware_broadcom_wlan-bc28c1d9af9673352208a2a75ff8d4d9ac02d718.tar.bz2 |
Fix build failures on volantis
Commented out a log line which assumed a 32 bit pointer.
Change-Id: I7d6cd4742fbc987a9690a4b66df38e73edb55d20
-rw-r--r-- | bcmdhd/wifi_hal/wifi_logger.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bcmdhd/wifi_hal/wifi_logger.cpp b/bcmdhd/wifi_hal/wifi_logger.cpp index 216b458..171a578 100644 --- a/bcmdhd/wifi_hal/wifi_logger.cpp +++ b/bcmdhd/wifi_hal/wifi_logger.cpp @@ -724,11 +724,13 @@ public: ALOGE("Failed to put get memory dump request; result = %d", result); return result; } + /* BUG: 1. should not be passing pointer to data, 2. should not assume pointer is 32 bits result = request.put_u32(LOGGER_ATTRIBUTE_FW_DUMP_DATA, (uint32_t)mBuff); if (result != WIFI_SUCCESS) { ALOGE("Failed to put get memory dump request; result = %d", result); return result; } + */ request.attr_end(data); result = requestResponse(request); |