summaryrefslogtreecommitdiff
path: root/qcwcn
diff options
context:
space:
mode:
authorJoe Onorato <joeo@google.com>2016-03-17 17:19:30 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2016-03-17 17:19:30 +0000
commitc5f6787412f1595766d723234150397fbd4e0c15 (patch)
tree872fe19e15631f4786b7824abbda1a47304d8230 /qcwcn
parentb441ebdd4e248f88e403ca32faa29ceb11e4ccd9 (diff)
parent4af1858c99372a4451dd4210601c17517618c01f (diff)
downloadwlan-c5f6787412f1595766d723234150397fbd4e0c15.tar.gz
Merge "Turn off excess logging" into nyc-dev
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 {