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 0234CC4332F for ; Tue, 11 Oct 2022 15:11:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231338AbiJKPLw (ORCPT ); Tue, 11 Oct 2022 11:11:52 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33206 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231450AbiJKPL3 (ORCPT ); Tue, 11 Oct 2022 11:11:29 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 90B239A9CC; Tue, 11 Oct 2022 08:04:15 -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 ams.source.kernel.org (Postfix) with ESMTPS id 45963B81637; Tue, 11 Oct 2022 14:54:07 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 45A89C43141; Tue, 11 Oct 2022 14:54:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1665500046; bh=BUiIZJhIeOM76H2KENTk7giJumNVkfd/JEC/R/udrN4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=k/NDJXBUm4vRLowykAEfNyCYnlR//VNbgtnAV0dcVBrmFmjUaqLfb1Yid0XSgjyqu 19Kayq4FJJM1tzNKWdVru6VO43XDfLGVMNTK9RjG0wq7qpmEcS8wt1GKRFnwrZ4Xsy tp/R5z+GmD38QYGKpSCoq29tSeYa7PoZezBVOwAvi6IwRfdWJresL5+n/QfFL7/a0D rF6Hvy5+Of7XbUOVf/48lJW6qBOfPxdO034v6BCiuH/lGuA2Vkz9khlg5NdhSV1/nJ zTXxsTlyjLQrbzsXgcSQkX0SAVYa7/qDYGlSbOS+kYXlEiJxWuk0Tfjnk0ROPeTBUY qMkXtB3yY2QbA== 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 4.19 05/11] ARM: dts: imx6qp: add missing properties for sram Date: Tue, 11 Oct 2022 10:53:52 -0400 Message-Id: <20221011145358.1624959-5-sashal@kernel.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20221011145358.1624959-1-sashal@kernel.org> References: <20221011145358.1624959-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 088fe5237435ee2f7ed4450519b2ef58b94c832f ] All 3 properties are required by sram.yaml. Fixes the dtbs_check warning: sram@940000: '#address-cells' is a required property sram@940000: '#size-cells' is a required property sram@940000: 'ranges' is a required property Signed-off-by: Alexander Stein Signed-off-by: Shawn Guo Signed-off-by: Sasha Levin --- arch/arm/boot/dts/imx6qp.dtsi | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/arch/arm/boot/dts/imx6qp.dtsi b/arch/arm/boot/dts/imx6qp.dtsi index d91f92f944c5..3633383db706 100644 --- a/arch/arm/boot/dts/imx6qp.dtsi +++ b/arch/arm/boot/dts/imx6qp.dtsi @@ -9,12 +9,18 @@ soc { ocram2: sram@940000 { compatible = "mmio-sram"; reg = <0x00940000 0x20000>; + ranges = <0 0x00940000 0x20000>; + #address-cells = <1>; + #size-cells = <1>; clocks = <&clks IMX6QDL_CLK_OCRAM>; }; ocram3: sram@960000 { compatible = "mmio-sram"; reg = <0x00960000 0x20000>; + ranges = <0 0x00960000 0x20000>; + #address-cells = <1>; + #size-cells = <1>; clocks = <&clks IMX6QDL_CLK_OCRAM>; }; -- 2.35.1