]> Git Repo - linux.git/commitdiff
ARM: dts: imx6sx: Remove incorrect mmc fallback compatible
authorFabio Estevam <[email protected]>
Wed, 23 Oct 2024 19:26:36 +0000 (16:26 -0300)
committerShawn Guo <[email protected]>
Fri, 1 Nov 2024 10:11:17 +0000 (18:11 +0800)
Per fsl-imx-esdhc.yaml, the correct compatible string for i.MX6SX is:

compatible = "fsl,imx6sx-usdhc"

Remove the undocumented "fsl,imx6sl-usdhc" fallback compatible.

This fixes the following dt-schema warnings:

mmc@2198000: compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,imx6sl-usdhc', 'fsl,imx6q-usdhc'] is too long
['fsl,imx6sl-usdhc', 'fsl,imx6q-usdhc'] is too short
'fsl,imx50-esdhc' was expected
...

Signed-off-by: Fabio Estevam <[email protected]>
Signed-off-by: Shawn Guo <[email protected]>
arch/arm/boot/dts/nxp/imx/imx6sx.dtsi

index b386448486df80a033efbad38c37a4dd04ee1caa..a94bebaa858a2e893ce7dc9d93034de0e4d32de5 100644 (file)
                        };
 
                        usdhc1: mmc@2190000 {
-                               compatible = "fsl,imx6sx-usdhc", "fsl,imx6sl-usdhc";
+                               compatible = "fsl,imx6sx-usdhc";
                                reg = <0x02190000 0x4000>;
                                interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
                                clocks = <&clks IMX6SX_CLK_USDHC1>,
                        };
 
                        usdhc2: mmc@2194000 {
-                               compatible = "fsl,imx6sx-usdhc", "fsl,imx6sl-usdhc";
+                               compatible = "fsl,imx6sx-usdhc";
                                reg = <0x02194000 0x4000>;
                                interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
                                clocks = <&clks IMX6SX_CLK_USDHC2>,
                        };
 
                        usdhc3: mmc@2198000 {
-                               compatible = "fsl,imx6sx-usdhc", "fsl,imx6sl-usdhc";
+                               compatible = "fsl,imx6sx-usdhc";
                                reg = <0x02198000 0x4000>;
                                interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
                                clocks = <&clks IMX6SX_CLK_USDHC3>,
                        };
 
                        usdhc4: mmc@219c000 {
-                               compatible = "fsl,imx6sx-usdhc", "fsl,imx6sl-usdhc";
+                               compatible = "fsl,imx6sx-usdhc";
                                reg = <0x0219c000 0x4000>;
                                interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
                                clocks = <&clks IMX6SX_CLK_USDHC4>,
This page took 0.057013 seconds and 4 git commands to generate.