Skip to content

Commit 1610233

Browse files
Marek VasutShawn Guo
authored andcommitted
arm64: dts: imx8mm: Fix NAND controller size-cells
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>
1 parent 753395e commit 1610233

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
@@ -1244,10 +1244,10 @@
12441244
clocks = <&clk IMX8MM_CLK_NAND_USDHC_BUS_RAWNAND_CLK>;
12451245
};
12461246

1247-
gpmi: nand-controller@33002000{
1247+
gpmi: nand-controller@33002000 {
12481248
compatible = "fsl,imx8mm-gpmi-nand", "fsl,imx7d-gpmi-nand";
12491249
#address-cells = <1>;
1250-
#size-cells = <1>;
1250+
#size-cells = <0>;
12511251
reg = <0x33002000 0x2000>, <0x33004000 0x4000>;
12521252
reg-names = "gpmi-nand", "bch";
12531253
interrupts = <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>;

0 commit comments

Comments
 (0)