summaryrefslogtreecommitdiff
path: root/qcwcn
diff options
context:
space:
mode:
authorJoe Onorato <joeo@google.com>2016-03-01 11:02:56 -0800
committerJoe Onorato <joeo@google.com>2016-03-09 15:27:22 -0800
commit4af1858c99372a4451dd4210601c17517618c01f (patch)
treeaa7bf62fef4fcd6cb8b00a1d0a397ca8758b9407 /qcwcn
parent76bf03b613d7c1aa14ba63b1670f0c9d11c367fc (diff)
downloadwlan-4af1858c99372a4451dd4210601c17517618c01f.tar.gz
Turn off excess logging
Change-Id: I77104c5183d4c83c5aa8cadaad83cdd2eb35cc7f
Diffstat (limited to 'qcwcn')
-rw-r--r--qcwcn/wifi_hal/ring_buffer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/qcwcn/wifi_hal/ring_buffer.cpp b/qcwcn/wifi_hal/ring_buffer.cpp
index 387fc71..8664515 100644
--- a/qcwcn/wifi_hal/ring_buffer.cpp
+++ b/qcwcn/wifi_hal/ring_buffer.cpp
@@ -267,7 +267,7 @@ enum rb_status rb_write (void *ctx, u8 *buf, size_t length, int overwrite,
rbc->rd_buf_no++;
if (rbc->rd_buf_no == rbc->max_num_bufs) {
rbc->rd_buf_no = 0;
- ALOGD("Pushing read to the start of ring buffer");
+ ALOGV("Pushing read to the start of ring buffer");
}
/* the previous buffer might have little more empty room
* after overwriting the remaining bytes
@@ -295,7 +295,7 @@ enum rb_status rb_write (void *ctx, u8 *buf, size_t length, int overwrite,
rbc->bufs[rbc->wr_buf_no].last_wr_index = rbc->cur_wr_buf_idx;
rbc->wr_buf_no++;
if (rbc->wr_buf_no == rbc->max_num_bufs) {
- ALOGD("Write rolling over to the start of ring buffer");
+ ALOGV("Write rolling over to the start of ring buffer");
rbc->wr_buf_no = 0;
}
/* Reset the write index to zero as this is a new buffer */
@@ -402,7 +402,7 @@ size_t rb_read (void *ctx, u8 *buf, size_t max_length)
}
rbc->rd_buf_no++;
if (rbc->rd_buf_no == rbc->max_num_bufs) {
- ALOGD("Read rolling over to the start of ring buffer");
+ ALOGV("Read rolling over to the start of ring buffer");
rbc->rd_buf_no = 0;
}
/* Reset the read index as this is a new buffer */
@@ -497,7 +497,7 @@ u8 *rb_get_read_buf(void *ctx, size_t *length)
rbc->bufs[rbc->rd_buf_no].full = 0;
rbc->rd_buf_no++;
if (rbc->rd_buf_no == rbc->max_num_bufs) {
- ALOGD("Read rolling over to the start of ring buffer");
+ ALOGV("Read rolling over to the start of ring buffer");
rbc->rd_buf_no = 0;
}
} else {