diff --git a/asoc/codecs/wsa881x-temp-sensor.c b/asoc/codecs/wsa881x-temp-sensor.c index 97f4d46f33..eb7832a4d2 100644 --- a/asoc/codecs/wsa881x-temp-sensor.c +++ b/asoc/codecs/wsa881x-temp-sensor.c @@ -1,5 +1,5 @@ // 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 @@ -109,9 +109,8 @@ temp_retry: if (temp_val <= LOW_TEMP_THRESHOLD || temp_val >= HIGH_TEMP_THRESHOLD) { - printk_ratelimited("%s: T0: %d is out of range[%d, %d]\n", - __func__, temp_val, LOW_TEMP_THRESHOLD, - HIGH_TEMP_THRESHOLD); + pr_debug("%s: T0: %d is out of range[%d, %d]\n", __func__, + temp_val, LOW_TEMP_THRESHOLD, HIGH_TEMP_THRESHOLD); if (retry--) { msleep(20); goto temp_retry;