Skip to content

Commit 8ccf18c

Browse files
Marek Vasutgregkh
authored andcommitted
ARM: dts: imx7: Fix NAND controller size-cells
[ Upstream commit 753395e ] 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: e7495a4 ("ARM: dts: imx7: add GPMI NAND and APBH DMA") 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 e884a6c commit 8ccf18c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

arch/arm/boot/dts/imx7s.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1252,10 +1252,10 @@
12521252
clocks = <&clks IMX7D_NAND_USDHC_BUS_RAWNAND_CLK>;
12531253
};
12541254

1255-
gpmi: nand-controller@33002000{
1255+
gpmi: nand-controller@33002000 {
12561256
compatible = "fsl,imx7d-gpmi-nand";
12571257
#address-cells = <1>;
1258-
#size-cells = <1>;
1258+
#size-cells = <0>;
12591259
reg = <0x33002000 0x2000>, <0x33004000 0x4000>;
12601260
reg-names = "gpmi-nand", "bch";
12611261
interrupts = <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>;

0 commit comments

Comments
 (0)