Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752247AbbKQCou (ORCPT ); Mon, 16 Nov 2015 21:44:50 -0500 Received: from relay1.mentorg.com ([192.94.38.131]:50365 "EHLO relay1.mentorg.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750982AbbKQCos (ORCPT ); Mon, 16 Nov 2015 21:44:48 -0500 From: Jiada Wang To: , CC: , , Subject: [PATCH v2] thermal: of-thermal: Reduce log level for message when can't find thermal zone Date: Tue, 17 Nov 2015 11:43:34 +0900 Message-ID: <1447728214-31097-1-git-send-email-jiada_wang@mentor.com> X-Mailer: git-send-email 2.4.5 MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1017 Lines: 31 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 found in of_thermal_destroy_zones(). Signed-off-by: Jiada Wang --- 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/