Skip to content

Commit 563af1f

Browse files
Marek Vasutsmb49
authored andcommitted
arm64: dts: imx8mn: Fix NAND controller size-cells
BugLink: https://bugs.launchpad.net/bugs/2002347 [ Upstream commit 5468e93 ] 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) " Fixes: 6c3debc ("arm64: dts: freescale: Add i.MX8MN 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> Signed-off-by: Kamal Mostafa <kamal@canonical.com> Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
1 parent 9ff6e2b commit 563af1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@
695695
gpmi: nand-controller@33002000 {
696696
compatible = "fsl,imx8mn-gpmi-nand", "fsl,imx7d-gpmi-nand";
697697
#address-cells = <1>;
698-
#size-cells = <1>;
698+
#size-cells = <0>;
699699
reg = <0x33002000 0x2000>, <0x33004000 0x4000>;
700700
reg-names = "gpmi-nand", "bch";
701701
interrupts = <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>;

0 commit comments

Comments
 (0)