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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3087FC4167B for ; Tue, 11 Oct 2022 14:50:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229966AbiJKOuu (ORCPT ); Tue, 11 Oct 2022 10:50:50 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35064 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229968AbiJKOul (ORCPT ); Tue, 11 Oct 2022 10:50:41 -0400 Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0B9C95A2CD; Tue, 11 Oct 2022 07:50:30 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by sin.source.kernel.org (Postfix) with ESMTPS id BF669CE185D; Tue, 11 Oct 2022 14:50:28 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 25C2FC433C1; Tue, 11 Oct 2022 14:50:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1665499826; bh=xF6RCD8qUo9mmsccg8kBouZOJ89VKEmtSKFhSnmDyfA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UxCOWWU2oB8dGqreu9ODBME3JDXbPqZLj7ePn3zdLc3CNzdcOAzLuuHhKVxJ7JWOh BwMxwwapnHoB4Jr5lNIoxncLFu67+xhtk/kqFHPapMfDZ7xF0wgn6L6UBEVW1yUoAo tPUw0u4eIoYTMxp+RmO8lxGlikYvFSGuM5Bq6WCtXgfFtbsLUhMig/0jzpWbsgRBrm wkOGDbx2jKlK8GskyKFNC5cND0XDwTs6w1QBnQZiAOmF4Aag9WLIHeYPpwNRRLGjlz Z/rplM9okKY6PvVnmytoUmT+ysmCPoDFVZL2wezfgfIC01dA4vCL1pq2vVokJiwvxr WZT5RP/6MUzxw== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Alexander Stein , Shawn Guo , Sasha Levin , robh+dt@kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH AUTOSEL 6.0 07/46] ARM: dts: imx6dl: add missing properties for sram Date: Tue, 11 Oct 2022 10:49:35 -0400 Message-Id: <20221011145015.1622882-7-sashal@kernel.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20221011145015.1622882-1-sashal@kernel.org> References: <20221011145015.1622882-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Alexander Stein [ Upstream commit f5848b95633d598bacf0500e0108dc5961af88c0 ] All 3 properties are required by sram.yaml. Fixes the dtbs_check warning: sram@900000: '#address-cells' is a required property sram@900000: '#size-cells' is a required property sram@900000: 'ranges' is a required property Signed-off-by: Alexander Stein Signed-off-by: Shawn Guo Signed-off-by: Sasha Levin --- arch/arm/boot/dts/imx6dl.dtsi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/arm/boot/dts/imx6dl.dtsi b/arch/arm/boot/dts/imx6dl.dtsi index 8e0ed209ede0..dc919e09a505 100644 --- a/arch/arm/boot/dts/imx6dl.dtsi +++ b/arch/arm/boot/dts/imx6dl.dtsi @@ -84,6 +84,9 @@ soc: soc { ocram: sram@900000 { compatible = "mmio-sram"; reg = <0x00900000 0x20000>; + ranges = <0 0x00900000 0x20000>; + #address-cells = <1>; + #size-cells = <1>; clocks = <&clks IMX6QDL_CLK_OCRAM>; }; -- 2.35.1