summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormukesh agrawal <quiche@google.com>2016-03-14 15:53:02 -0700
committermukesh agrawal <quiche@google.com>2016-03-14 15:53:02 -0700
commit7a6a109bb79b2834eae0c3902207a0bdff72efb2 (patch)
tree7110abf5b9b9cd16e07de6e0090ef4fdb0c46bb4
parent50bd764949c63725bf46ff03efd83295c57cb2c9 (diff)
downloadlibhardware_legacy-7a6a109bb79b2834eae0c3902207a0bdff72efb2.tar.gz
wifi_logger: fix documentation for TX_PkT_FATE_DRV_DROP_OTHER
Given that there is an explicit enumerated value to indicate a drop due to lack of buffers, we shouldn't recommend using the OTHER value for out of buffers. BUG=27352446 TEST=compile Change-Id: Id4fdbf530ed9a99e2b9693acb649137d598abf85
-rw-r--r--include/hardware_legacy/wifi_logger.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hardware_legacy/wifi_logger.h b/include/hardware_legacy/wifi_logger.h
index 8d79f11..465c00b 100644
--- a/include/hardware_legacy/wifi_logger.h
+++ b/include/hardware_legacy/wifi_logger.h
@@ -482,7 +482,7 @@ typedef enum {
// Dropped by driver due to lack of buffer space.
TX_PKT_FATE_DRV_DROP_NOBUFS,
- // Dropped by driver for any other reason. E.g. out of buffers.
+ // Dropped by driver for any other reason.
TX_PKT_FATE_DRV_DROP_OTHER,
} wifi_tx_packet_fate;