Skip to content

Commit 7178d56

Browse files
Marek Vasutgregkh
authored andcommitted
arm64: dts: imx8mm: Fix NAND controller size-cells
[ Upstream commit 1610233 ] The NAND controller size-cells should be 0 per DT bindings. Fix the following warning produces by DT bindings check: " nand-controller@33002000: #size-cells:0:0: 0 was expected nand-controller@33002000: Unevaluated properties are not allowed ('#address-cells', '#size-cells' were unexpected) " Fix the missing space in node name too. Fixes: a05ea40 ("arm64: dts: imx: Add i.mx8mm dtsi support") Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Shawn Guo <shawnguo@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent 8ccf18c commit 7178d56

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

arch/arm64/boot/dts/freescale/imx8mm.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1014,10 +1014,10 @@
10141014
clocks = <&clk IMX8MM_CLK_NAND_USDHC_BUS_RAWNAND_CLK>;
10151015
};
10161016

1017-
gpmi: nand-controller@33002000{
1017+
gpmi: nand-controller@33002000 {
10181018
compatible = "fsl,imx8mm-gpmi-nand", "fsl,imx7d-gpmi-nand";
10191019
#address-cells = <1>;
1020-
#size-cells = <1>;
1020+
#size-cells = <0>;
10211021
reg = <0x33002000 0x2000>, <0x33004000 0x4000>;
10221022
reg-names = "gpmi-nand", "bch";
10231023
interrupts = <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>;

0 commit comments

Comments
 (0)