asoc: wsa881x: change WSA temparature log level to pr_debug
Dmesg logs are getting flooded with WSA temparature logs. Change the log level to pr_debug to get rid of this messages. Change-Id: Ia4ccca47c5e6e5d56883ff73e1ae4278ff855be3 Signed-off-by: Surendar Karka <skarka@codeaurora.org>
This commit is contained in:

committed by
Meng Wang

parent
63f4815535
commit
809cb8ed58
@@ -1,5 +1,5 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-only
|
// SPDX-License-Identifier: GPL-2.0-only
|
||||||
/* Copyright (c) 2015, 2017-2018 The Linux Foundation. All rights reserved.
|
/* Copyright (c) 2015, 2017-2019 The Linux Foundation. All rights reserved.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/bitops.h>
|
#include <linux/bitops.h>
|
||||||
@@ -109,9 +109,8 @@ temp_retry:
|
|||||||
|
|
||||||
if (temp_val <= LOW_TEMP_THRESHOLD ||
|
if (temp_val <= LOW_TEMP_THRESHOLD ||
|
||||||
temp_val >= HIGH_TEMP_THRESHOLD) {
|
temp_val >= HIGH_TEMP_THRESHOLD) {
|
||||||
printk_ratelimited("%s: T0: %d is out of range[%d, %d]\n",
|
pr_debug("%s: T0: %d is out of range[%d, %d]\n", __func__,
|
||||||
__func__, temp_val, LOW_TEMP_THRESHOLD,
|
temp_val, LOW_TEMP_THRESHOLD, HIGH_TEMP_THRESHOLD);
|
||||||
HIGH_TEMP_THRESHOLD);
|
|
||||||
if (retry--) {
|
if (retry--) {
|
||||||
msleep(20);
|
msleep(20);
|
||||||
goto temp_retry;
|
goto temp_retry;
|
||||||
|
Reference in New Issue
Block a user