Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S941091AbcKOPqy (ORCPT ); Tue, 15 Nov 2016 10:46:54 -0500 Received: from skprod2.natinst.com ([130.164.80.23]:36924 "EHLO ni.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1755451AbcKOPqt (ORCPT ); Tue, 15 Nov 2016 10:46:49 -0500 Date: Tue, 15 Nov 2016 09:46:08 -0600 From: Julia Cartwright To: Michal Simek CC: , S?ren Brinkmann , , , Steffen Trumtrar , , Peter Crosthwaite , Rob Herring , Rob Herring , Mark Rutland , Russell King Subject: Re: [PATCH 2/2] ARM: zynq: Fix W=1 dtc 1.4 warnings Message-ID: <20161115154608.GH30999@jcartwri.amer.corp.natinst.com> References: <2d42e25d7dd03e562e12e71fd037837737115940.1479218844.git.michal.simek@xilinx.com> <90eca8dfcdcef68ce5fe39f2329c4b61d2662598.1479218844.git.michal.simek@xilinx.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <90eca8dfcdcef68ce5fe39f2329c4b61d2662598.1479218844.git.michal.simek@xilinx.com> User-Agent: Mutt/1.7.0 (2016-08-17) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2016-11-15_05:,, signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 suspectscore=0 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1609300000 definitions=main-1611150277 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1502 Lines: 47 On Tue, Nov 15, 2016 at 03:07:27PM +0100, Michal Simek wrote: > The patch removes these warnings reported by dtc 1.4: > Warning (unit_address_vs_reg): Node /pmu has a reg or ranges property, > but no unit name > Warning (unit_address_vs_reg): Node /fixedregulator@0 has a unit name, > but no reg property > Warning (unit_address_vs_reg): Node /memory has a reg or ranges > property, but no unit name > > Signed-off-by: Michal Simek Reviewed-by: Julia Cartwright > > --- > > arch/arm/boot/dts/zynq-7000.dtsi | 4 ++-- > arch/arm/boot/dts/zynq-parallella.dts | 2 +- > arch/arm/boot/dts/zynq-zc702.dts | 2 +- > arch/arm/boot/dts/zynq-zc706.dts | 2 +- > arch/arm/boot/dts/zynq-zed.dts | 2 +- > arch/arm/boot/dts/zynq-zybo.dts | 2 +- > 6 files changed, 7 insertions(+), 7 deletions(-) > > diff --git a/arch/arm/boot/dts/zynq-7000.dtsi b/arch/arm/boot/dts/zynq-7000.dtsi > index f47a6c1cc752..402b5bbe3b5b 100644 > --- a/arch/arm/boot/dts/zynq-7000.dtsi > +++ b/arch/arm/boot/dts/zynq-7000.dtsi > @@ -42,14 +42,14 @@ > }; > }; > > - pmu { > + pmu@f8891000 { > compatible = "arm,cortex-a9-pmu"; > interrupts = <0 5 4>, <0 6 4>; > interrupt-parent = <&intc>; > reg = < 0xf8891000 0x1000 0xf8893000 0x1000 >; Style nit: we should drop the space before/after '<' and '>'; and, perhaps separate the entries to be a bit more readable: reg = <0xf8891000 0x1000>, <0xf8893000 0x1000>; Thanks, Julia