summaryrefslogtreecommitdiff
path: root/core/cds
diff options
context:
space:
mode:
authorTushnim Bhattacharyya <tushnimb@codeaurora.org>2017-10-30 10:50:20 -0700
committersnandini <snandini@codeaurora.org>2017-10-30 19:12:17 -0700
commita8ce6f54249ec0ac4255335f6c6a9cd1c045fa9f (patch)
tree5c94d661a05f465a205ee896b715de9f8234dec0 /core/cds
parent8cf982bf7f1fdbe36a74e5ba6d73297f293ec21e (diff)
downloadqcacld-a8ce6f54249ec0ac4255335f6c6a9cd1c045fa9f.tar.gz
qcacld-3.0: Reduce the log level for unsafe channel print
Reduce the log level to debug for unsafe channel list print. Change-Id: I790f9187f6696e7d07bbc58b03399aee2c364806 CRs-Fixed: 2134968
Diffstat (limited to 'core/cds')
-rw-r--r--core/cds/src/cds_concurrency.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/cds/src/cds_concurrency.c b/core/cds/src/cds_concurrency.c
index 630add0fce..264ade9864 100644
--- a/core/cds/src/cds_concurrency.c
+++ b/core/cds/src/cds_concurrency.c
@@ -5009,7 +5009,7 @@ void cds_update_with_safe_channel_list(uint8_t *pcl_channels, uint32_t *len,
unsafe_channel_list[j]) {
/* Found unsafe channel, update it */
is_unsafe = 1;
- cds_warn("CH %d is not safe",
+ cds_debug("CH %d is not safe",
current_channel_list[i]);
break;
}
@@ -7676,7 +7676,7 @@ bool cds_is_safe_channel(uint8_t channel)
for (j = 0; j < cds_ctx->unsafe_channel_count; j++) {
if (channel == cds_ctx->unsafe_channel_list[j]) {
is_safe = false;
- cds_warn("CH %d is not safe", channel);
+ cds_debug("CH %d is not safe", channel);
break;
}
}