Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753425AbeAKAiw (ORCPT + 1 other); Wed, 10 Jan 2018 19:38:52 -0500 Received: from Mailgw01.mediatek.com ([1.203.163.78]:51952 "EHLO mailgw01.mediatek.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1752839AbeAKAiu (ORCPT ); Wed, 10 Jan 2018 19:38:50 -0500 X-UUID: dbe7804a55cb429e841de91b14693ef3-20180111 Message-ID: <1515631110.19513.5.camel@mhfsdcap03> Subject: Re: [PATCH] arm64: dts: add #cooling-cells to CPU nodes From: Chunfeng Yun To: Arnd Bergmann CC: Matthias Brugger , , Rob Herring , Mark Rutland , Catalin Marinas , Will Deacon , Daniel Kurtz , Andrew-sh Cheng , Chaotian Jing , "dawei.chien@mediatek.com" , , , , Date: Thu, 11 Jan 2018 08:38:30 +0800 In-Reply-To: <20180110210706.2331225-1-arnd@arndb.de> References: <20180110210706.2331225-1-arnd@arndb.de> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.2.3-0ubuntu6 Content-Transfer-Encoding: 7bit MIME-Version: 1.0 X-MTK: N Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: On Wed, 2018-01-10 at 22:06 +0100, Arnd Bergmann wrote: > dtc complains about the lack of #coolin-cells properties for the > CPU nodes that are referred to as "cooling-device": > > arch/arm64/boot/dts/mediatek/mt8173-evb.dtb: Warning (cooling_device_property): Missing property '#cooling-cells' in node /cpus/cpu@0 or bad phandle (referred from /thermal-zones/cpu_thermal/cooling-maps/map@0:cooling-device[0]) > arch/arm64/boot/dts/mediatek/mt8173-evb.dtb: Warning (cooling_device_property): Missing property '#cooling-cells' in node /cpus/cpu@100 or bad phandle (referred from /thermal-zones/cpu_thermal/cooling-maps/map@1:cooling-device[0]) > > Apparently this property must be '<2>' to match the binding. > > Signed-off-by: Arnd Bergmann > --- > If this looks ok, I'd apply it directly to the fixes branch > for 4.15, as the warning is one that was introduced in this > release. > --- > arch/arm64/boot/dts/mediatek/mt8173.dtsi | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/arch/arm64/boot/dts/mediatek/mt8173.dtsi b/arch/arm64/boot/dts/mediatek/mt8173.dtsi > index b477ad790071..9fbe4705ee88 100644 > --- a/arch/arm64/boot/dts/mediatek/mt8173.dtsi > +++ b/arch/arm64/boot/dts/mediatek/mt8173.dtsi > @@ -155,6 +155,7 @@ > reg = <0x000>; > enable-method = "psci"; > cpu-idle-states = <&CPU_SLEEP_0>; > + #cooling-cells = <2>; > clocks = <&infracfg CLK_INFRA_CA53SEL>, > <&apmixedsys CLK_APMIXED_MAINPLL>; > clock-names = "cpu", "intermediate"; > @@ -179,6 +180,7 @@ > reg = <0x100>; > enable-method = "psci"; > cpu-idle-states = <&CPU_SLEEP_0>; > + #cooling-cells = <2>; > clocks = <&infracfg CLK_INFRA_CA57SEL>, > <&apmixedsys CLK_APMIXED_MAINPLL>; > clock-names = "cpu", "intermediate"; Tested-by: Chunfeng Yun