Fix build failures on volantis

Commented out a log line which assumed a 32 bit pointer.

Change-Id: I7d6cd4742fbc987a9690a4b66df38e73edb55d20
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 @@
                     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);