Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1269885 > unrolled thread

[PATCH] thermal: of-thermal: Reduce log level for message when can't fine thermal zone

Started byJiada Wang <jiada_wang@mentor.com>
First post2015-11-16 09:20 +0100
Last post2015-11-16 09:20 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] thermal: of-thermal: Reduce log level for message when can't fine thermal zone Jiada Wang <jiada_wang@mentor.com> - 2015-11-16 09:20 +0100

#1269885 — [PATCH] thermal: of-thermal: Reduce log level for message when can't fine thermal zone

FromJiada Wang <jiada_wang@mentor.com>
Date2015-11-16 09:20 +0100
Subject[PATCH] thermal: of-thermal: Reduce log level for message when can't fine thermal zone
Message-ID<qvnb4-4Qd-3@gated-at.bofh.it>
Some systems register thermal zone by themself and don't need to
have thermal zones node in DT. Therefore reduce the log level from
ERROR to DEBUG when thermal zone node can't be find in
of_thermal_destroy_zones().

Signed-off-by: Jiada Wang <jiada_wang@mentor.com>
---
 drivers/thermal/of-thermal.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/thermal/of-thermal.c b/drivers/thermal/of-thermal.c
index 42b7d42..be4eedc 100644
--- a/drivers/thermal/of-thermal.c
+++ b/drivers/thermal/of-thermal.c
@@ -964,7 +964,7 @@ void of_thermal_destroy_zones(void)
 
 	np = of_find_node_by_name(NULL, "thermal-zones");
 	if (!np) {
-		pr_err("unable to find thermal zones\n");
+		pr_debug("unable to find thermal zones\n");
 		return;
 	}
 
-- 
2.4.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web