From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 84839C2D0E7 for ; Fri, 27 Mar 2020 03:04:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 5C0F62082D for ; Fri, 27 Mar 2020 03:04:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1585278284; bh=8MXvUhe8inX9HXIpiLsCZJCvYdR7WItcjnns2q40lSo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=ugCJmq0vpe5FFTBPpHyjSaJx0b0zwNH1v9MOPVWbLz72QhBmBboIHvtEBznsputBi ApLi62c6ESj5crZbacF8T2iLa0DeQGz+MEvEQTFhJMIJ4t5SBx/Ojqrgd/ywUhi2bc BJd66NQ2sCxXqmXNFy/Z8wusGHaimcNL9mDQ04TE= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727831AbgC0DEc (ORCPT ); Thu, 26 Mar 2020 23:04:32 -0400 Received: from mail.kernel.org ([198.145.29.99]:42738 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727774AbgC0DEb (ORCPT ); Thu, 26 Mar 2020 23:04:31 -0400 Received: from wens.tw (mirror2.csie.ntu.edu.tw [140.112.30.76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id EF45C20838; Fri, 27 Mar 2020 03:04:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1585278271; bh=8MXvUhe8inX9HXIpiLsCZJCvYdR7WItcjnns2q40lSo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=jkwZljV1t7R9L7Sc6xPD/OcRfpXE2YAR3x1kThL+7r65ipHs2524rF7MsGmTlS+FV 1OHJ2ABxxeJZ4x03QCXOVvGKzhbPvueq2fFEnNZvcdkljbm5ympqqkgu2ix4kBc0k4 h7ALLNgQDqc5Sy8oEWooMJquCMkYcmbH+csZ4EDY= Received: by wens.tw (Postfix, from userid 1000) id 514785FF1C; Fri, 27 Mar 2020 11:04:26 +0800 (CST) From: Chen-Yu Tsai To: Heiko Stuebner , Rob Herring Cc: Chen-Yu Tsai , linux-rockchip@lists.infradead.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH 4/6] arm64: dts: rockchip: rk3328: drop #address-cells, #size-cells from grf node Date: Fri, 27 Mar 2020 11:04:12 +0800 Message-Id: <20200327030414.5903-5-wens@kernel.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200327030414.5903-1-wens@kernel.org> References: <20200327030414.5903-1-wens@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Chen-Yu Tsai The device tree compiler gives the following warning: /syscon@ff100000: unnecessary #address-cells/#size-cells without "ranges" or child "reg" property Since none of the grf node's direct child nodes have any reg properties, remove the two properties from the grf node to silence the warning. Signed-off-by: Chen-Yu Tsai --- arch/arm64/boot/dts/rockchip/rk3328.dtsi | 2 -- 1 file changed, 2 deletions(-) diff --git a/arch/arm64/boot/dts/rockchip/rk3328.dtsi b/arch/arm64/boot/dts/rockchip/rk3328.dtsi index b861b4fd75e6..a4d591d91533 100644 --- a/arch/arm64/boot/dts/rockchip/rk3328.dtsi +++ b/arch/arm64/boot/dts/rockchip/rk3328.dtsi @@ -299,8 +299,6 @@ &pdmm0_sdi2_sleep grf: syscon@ff100000 { compatible = "rockchip,rk3328-grf", "syscon", "simple-mfd"; reg = <0x0 0xff100000 0x0 0x1000>; - #address-cells = <1>; - #size-cells = <1>; io_domains: io-domains { compatible = "rockchip,rk3328-io-voltage-domain"; -- 2.25.1