From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id AC1D2107B4; Sat, 3 Feb 2024 04:12:40 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706933560; cv=none; b=iT5bhdfYGo60ZLDEbNRQtolnCpI7qXWDSO4F4mHm2ygHWwK3MIDWMGgzyd61grRYRZEN3aeSjgHPWWOXqmapDdiJjS6pmRP/fUUiWMf0sfFk5yjwAB02Onud3920YlZKqXeVMnM5aD8cyfbsDUg+I4DRfBp920W8p285xIuig1Q= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706933560; c=relaxed/simple; bh=7971lRQ4BEydctgwUuuCl79xBhSZL7UZH6MX6Ca4nGA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=FCbm8eaOgDL5e+wcpyJkU7vRFtwmgbxLO2rvVaDBbkeCgmENKzzz4FdoWiwJFSLXIVvDOb9nfp1f0n6PsAP6JJaygQCN0O6Rj1ohr9H59M6wVGTbNAZyXhDa1k4o2ZfBD35vXEzHxCPavYaq/cwQFwEq3Eo5Cx60cebXDSs/9RY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=pWRJ9N8c; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="pWRJ9N8c" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 772C9C433C7; Sat, 3 Feb 2024 04:12:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1706933560; bh=7971lRQ4BEydctgwUuuCl79xBhSZL7UZH6MX6Ca4nGA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=pWRJ9N8czKr4czi3FHC7FMpFMNa5Qlr5oygPNbExfQN3UVm8Q7uGMvs9PomCTewjo OAqZ4cU7y/tEYrfHFTQEFVdH6DPiYHKdH9I6k8H6nzoPwYgcz2G06hq4EGkHZJ53mw 7EnSLTEvJVzSJ4TZopBbhAPmMSpVtoxPsMIRjsvc= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Fabio Estevam , Shawn Guo , Sasha Levin Subject: [PATCH 6.6 114/322] ARM: dts: imx1: Fix sram node Date: Fri, 2 Feb 2024 20:03:31 -0800 Message-ID: <20240203035402.822923191@linuxfoundation.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240203035359.041730947@linuxfoundation.org> References: <20240203035359.041730947@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Fabio Estevam [ Upstream commit c248e535973088ba7071ff6f26ab7951143450af ] Per sram.yaml, address-cells, size-cells and ranges are mandatory. The node name should be sram. Change the node name and pass the required properties to fix the following dt-schema warnings: imx1-apf9328.dtb: esram@300000: $nodename:0: 'esram@300000' does not match '^sram(@.*)?' from schema $id: http://devicetree.org/schemas/sram/sram.yaml# imx1-apf9328.dtb: esram@300000: '#address-cells' is a required property from schema $id: http://devicetree.org/schemas/sram/sram.yaml# imx1-apf9328.dtb: esram@300000: '#size-cells' is a required property from schema $id: http://devicetree.org/schemas/sram/sram.yaml# imx1-apf9328.dtb: esram@300000: 'ranges' is a required property from schema $id: http://devicetree.org/schemas/sram/sram.yaml# Signed-off-by: Fabio Estevam Signed-off-by: Shawn Guo Signed-off-by: Sasha Levin --- arch/arm/boot/dts/nxp/imx/imx1.dtsi | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/nxp/imx/imx1.dtsi b/arch/arm/boot/dts/nxp/imx/imx1.dtsi index e312f1e74e2f..4aeb74479f44 100644 --- a/arch/arm/boot/dts/nxp/imx/imx1.dtsi +++ b/arch/arm/boot/dts/nxp/imx/imx1.dtsi @@ -268,9 +268,12 @@ status = "disabled"; }; - esram: esram@300000 { + esram: sram@300000 { compatible = "mmio-sram"; reg = <0x00300000 0x20000>; + ranges = <0 0x00300000 0x20000>; + #address-cells = <1>; + #size-cells = <1>; }; }; }; -- 2.43.0