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 08A2D7E76D; Wed, 21 Feb 2024 13:35:17 +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=1708522518; cv=none; b=ZGHrxG6d3r/LY4+H14aEAxfr4hQZ4aYq1cUIz9gIrlYu5xhvgh7VE4NkW5Iy33/xPbQ06DHPLWdSeGFVvnvKMoODM/t2uJZAz1gQsoRCLiDiV/h2++uaPxno0PgkqbE4sV/AyoN8KUavseCdQV4wBroja/1kAYnjKBHUKdkUk1E= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708522518; c=relaxed/simple; bh=bUaUtPicHIpWtnuSabfK9iWMb0oCL7ha3Jq4GLjVdiw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=SrkxZhaTflvwB2lEb2+B/O+uGavsuWtuHII9Ea+tnFUwz5IS9WOeWiJslKXX04V1s2DzFU67j+3jZwoOWIlY5WaFfu1nxEcN/kIgX54eoXX0dQfAxd13MsDJlysS/c3+sCTUngKdi2jE3dba948OyjGckfD/8GdW5gfAjIgzlJA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=HzqQBlZE; 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="HzqQBlZE" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 441A0C43399; Wed, 21 Feb 2024 13:35:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1708522517; bh=bUaUtPicHIpWtnuSabfK9iWMb0oCL7ha3Jq4GLjVdiw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HzqQBlZExVaodus2FSgSj6MuPyfhFyuz2k8VQX3OCaR51cZTPAAJwIOpOXSiI91oT ++IbXQrAfqnmQ4i3hqZa9CvpfSjrR57I37tErs9R5XCIsllVlg3SWEox3UYHVLKyAq Y/eL6EI9bb0ZTdSQheQ3HnNa1JnPf3XD5UQQ1Trg= 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 5.15 185/476] ARM: dts: imx1: Fix sram node Date: Wed, 21 Feb 2024 14:03:56 +0100 Message-ID: <20240221130014.725555167@linuxfoundation.org> X-Mailer: git-send-email 2.43.2 In-Reply-To: <20240221130007.738356493@linuxfoundation.org> References: <20240221130007.738356493@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.15-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/imx1.dtsi | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/imx1.dtsi b/arch/arm/boot/dts/imx1.dtsi index 9b940987864c..8d6e900a9081 100644 --- a/arch/arm/boot/dts/imx1.dtsi +++ b/arch/arm/boot/dts/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